forked from Hengle/Gamekit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 757 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
29
30
31
32
33
34
from setuptools import setup
setup_kwargs = dict(
name='gamekit',
version='0.0.0',
description='Gamekit python utilities',
author='Pierre Delaunay',
author_email='[email protected]',
license='BSD-3-Clause',
url="https://gamekit.readthedocs.io",
packages=[
'gamekit',
'gamekit.commands',
],
package_dir={"": "Source/Python"},
zip_safe=True,
setup_requires=[],
install_requires=[],
python_requires='>=3.7.*',
entry_points={
'console_scripts': [
'gkcli = gamekit.cli:main',
]
},
package_data={
"gamekit": [
'gamekit/templates/TemplateServer.Target.cs'
]
},
)
if __name__ == "__main__":
setup(**setup_kwargs)