-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
45 lines (40 loc) · 1.27 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
41
42
43
44
45
from setuptools import setup
ver_dic = {}
version_file = open("luadoc/version.py")
try:
version_file_contents = version_file.read()
finally:
version_file.close()
exec(compile(version_file_contents, "luadoc/version.py", 'exec'), ver_dic)
with open('README.md') as file:
long_description = file.read()
setup(
name='luadoc',
version=ver_dic["__version__"],
description='A lua ldoc tool in Python !',
long_description=long_description,
url='https://github.com/boolangery/py-lua-doc',
download_url='https://github.com/boolangery/py-lua-doc/archive/' + ver_dic["__version__"] + '.tar.gz',
author='Eliott Dumeix',
author_email='[email protected]',
license='GNU',
packages=['luadoc', 'luadoc.tests'],
zip_safe=False,
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
install_requires=[
'luaparser>=3.2.1', 'parsimonious'
],
entry_points={
'console_scripts': [
'luadoc = luadoc.__main__:main'
]
},
include_package_data=True
)