-
Notifications
You must be signed in to change notification settings - Fork 39
/
setup.py
38 lines (35 loc) · 1.19 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
from setuptools import setup
import luaparser
with open('README.rst') as file:
long_description = file.read()
setup(
name='luaparser',
version=luaparser.__version__,
description='A lua parser in Python',
long_description=long_description,
url='https://github.com/boolangery/py-lua-parser',
download_url='https://github.com/boolangery/py-lua-parser/archive/' + luaparser.__version__ + '.tar.gz',
author='Eliott Dumeix',
author_email='eliott.dumeix@gmail.com',
license='MIT',
packages=['luaparser', 'luaparser.parser', 'luaparser.utils', 'luaparser.tests'],
zip_safe=False,
classifiers=[
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
install_requires=[
'antlr4-python3-runtime==4.13.2',
'multimethod'
],
entry_points={
'console_scripts': [
'luaparser = luaparser.__main__:main'
]
}
)