-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 954 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 954 Bytes
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
from setuptools import setup, find_packages
from faf_lua_editor import __version__
setup(
name='faf_lua_editor',
version=__version__,
description='Editor for the FAF lua code',
# long_description=long_description,
url='https://github.com/ChessBerry/faf_lua_editor',
author='CheeseBerry',
author_email='cheeseberry@protonmail.com',
license='MIT',
packages=find_packages(),
nclude_package_data=True,
package_data={'faf_lua_editor': ['faf_lua_editor/moho_reference/*.json']},
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",
],
install_requires=[
'antlr4-python3-runtime<=4.7.2',
'luaparser==3.0.1FAF',
]
)