-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 1 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="zai-pl",
version="0.8.2",
author="Yavor Konstantinov",
author_email="ykonstantinov1@gmail.com",
description="A small programming language written for learning purposes.",
license="GPLv3",
long_description=long_description,
long_description_content_type="text/markdown",
entry_points={
'console_scripts': ['zai-pl=zai.__main__:main'],
},
url="https://github.com/sehnsucht13/zai-pl",
keywords=['zai', 'programming-language', 'zai-pl'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Programming Language :: Other",
"Topic :: Software Development :: Interpreters",
],
packages=['zai', 'zai/stdlib'],
python_requires='>=3.6',
)