-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (26 loc) · 896 Bytes
/
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
import setuptools
setuptools.setup(
name="pytov",
version="0.3.9",
license='GNU',
author="Yuval Rosen",
author_email="yuv.rosen@gmail.com",
description="Python with a larger syntax support",
long_description=''.join(open('README.md', encoding='utf-8').readlines()),
long_description_content_type="text/markdown",
url="https://github.com/Yuvix25/pytov",
packages=setuptools.find_packages(),
package_data = {'pytov' : ['*.tokens', '*.interp', '*.g4', '*.iml', '*.txt']},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=["antlr4-python3-runtime==4.9"],
entry_points={
'console_scripts': [
'pytov=pytov.pytov:run',
],
},
)