This repository has been archived by the owner on Jun 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
53 lines (49 loc) · 1.88 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# coding=utf-8
""" Setup file for the entire project """
import os
from pathlib import Path
import setuptools
with open("./PYPI_README.md", "r", encoding='utf-8') as file:
long_description = file.read()
with open("./requirements/common.txt", encoding='utf-8') as file:
requirements = file.read()
setuptools.setup(
name="paralang-base",
version="0.1.dev7",
author="Luna Klatzer",
author_email="[email protected]",
maintainer="Luna Klatzer",
maintainer_email="[email protected]",
description="Python-Compiler and API for the Para language",
long_description=long_description,
long_description_content_type="text/markdown",
license="GNU GENERAL PUBLIC LICENSE v3.0",
url="https://github.com/Para-Lang/Para/",
project_urls={
"Issue-Page": "https://github.com/Para-Lang/Para/issues/",
"Changelog": "https://github.com/Para-Lang/Para/releases",
"Docs": "https://para.readthedocs.org/"
},
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: C",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Environment :: Console",
"Environment :: Other Environment",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Compilers",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows"
],
include_package_data=True,
python_requires='>=3.8',
install_requires=requirements
)