-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (42 loc) · 1.35 KB
/
Copy pathsetup.py
File metadata and controls
47 lines (42 loc) · 1.35 KB
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
46
47
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,
long_description_content_type='text/markdown',
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='eliott.dumeix@gmail.com',
license='GNU',
packages=['luadoc', 'luadoc.tests'],
zip_safe=False,
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'
],
python_requires='>=3.8',
install_requires=[
'luaparser>=4.0', 'parsimonious'
],
entry_points={
'console_scripts': [
'luadoc = luadoc.__main__:main'
]
},
include_package_data=True
)