forked from Scony/godot-gdscript-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 809 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
from setuptools import setup
setup(
name="gdtoolkit",
version="0.3",
description="Independent, standalone set of tools for working with GDScript",
url="https://github.com/Scony/godot-gdscript-toolkit",
author="Pawel Lampe",
author_email="[email protected]",
license="MIT",
packages=[
"gdtoolkit",
"gdtoolkit.linter",
"gdtoolkit.formatter",
"gdtoolkit.parser",
],
package_data={"gdtoolkit.parser": ["gdscript.lark"]},
entry_points={
"console_scripts": [
"gdparse = gdtoolkit.parser.__main__:main",
"gdlint = gdtoolkit.linter.__main__:main",
]
},
include_package_data=True,
install_requires=["lark-parser>=0.7.8", "docopt>=0.6.2", "pyyaml>=5.1",],
python_requires=">=3",
)