-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·40 lines (36 loc) · 1.24 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
#!/bin/env python3
'''Setup script.'''
from pathlib import Path
from setuptools import setup, find_packages
THIS_DIRECTORY = Path(__file__).parent
REQUIREMENTS = (THIS_DIRECTORY / "requirements.txt").read_text().split('\n')[:-1]
LONG_DESCRIPTION = (THIS_DIRECTORY / "README.md").read_text()
CONTENT = {
"name": "playlanguage",
"version": "1.1.1",
"author": "Willow Ciesialka",
"author_email": "[email protected]",
"url": "https://github.com/wciesialka/play-language",
"description": "Stack-based programming language created for fun.",
"long_description": LONG_DESCRIPTION,
"long_description_content_type": "text/markdown",
"license": "GPLv3.0",
"entry_points": {
'console_scripts': [
'playlanguage = playlanguage.__main__:entry'
]
},
"packages": find_packages(where="src"),
"classifiers": [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Natural Language :: English"
],
"keywords": "python language",
"package_dir": {"": "src"},
"install_requires": REQUIREMENTS,
"zip_safe": False,
"python_requires": ">=3.8.10"
}
setup(**CONTENT)