-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (29 loc) · 1006 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
import setuptools
from upkit import __version__
with open('README.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name='upkit',
version=__version__,
# scripts=['upkit.py'],
entry_points={
'console_scripts': [
'upkit = upkit.tools:execute_from_command_line',
],
},
author='Vu Le (findereyes)',
author_email='[email protected]',
description='Project and package manager for Unity3D',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/finderseyes/upkit',
packages=['upkit'],
package_dir={'upkit': 'upkit'},
package_data={'upkit': ['data/**/*']},
install_requires=['xmltodict', 'pyyaml', 'yamlordereddictloader', 'jinja2', 'gitpython', ],
classifiers=[
'Programming Language :: Python :: 2',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
)