This repository was archived by the owner on Jun 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (52 loc) · 1.9 KB
/
setup.py
File metadata and controls
55 lines (52 loc) · 1.9 KB
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
54
55
# coding=utf-8
""" Setup file for the entire project """
import os
import setuptools
from pathlib import Path
with open("./README.md", "r", encoding='utf-8') as file:
long_description = file.read()
with open("./requirements.txt", encoding='utf-8') as file:
requirements = file.read()
setuptools.setup(
name="paralang-cli",
version="0.1.dev7",
author="Luna Klatzer",
author_email="luna.klatzer@gmail.com",
maintainer="Luna Klatzer",
maintainer_email="luna.klatzer@gmail.com",
description="Command Line Interface Implementation for the Para "
"programming compiler",
long_description=long_description,
long_description_content_type="text/markdown",
license="GNU GENERAL PUBLIC LICENSE v3.0",
url="https://github.com/Para-Lang/Para-CLI/",
project_urls={
"Issue-Page": "https://github.com/Para-Lang/Para-CLI/issues/",
"Changelog": "https://github.com/Para-Lang/Para-CLI/releases"
},
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",
"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,
entry_points={
'console_scripts': [
'para = paralang_cli.scripts.para:cli_run',
'paraproj = paralang_cli.scripts.paraproj:cli_run'
],
}
)