forked from NextCenturyCorporation/MCS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 971 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
import setuptools
with open('python_api/README.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name='machine_common_sense',
version='0.0.1',
maintainer='Next Century, a wholly owned subsidiary of CACI',
maintainer_email='[email protected]',
url='https://github.com/NextCenturyCorporation/MCS/',
description='Machine Common Sense Python API to Unity 3D Simulation Environment',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
license='Apache-2',
package_dir={'':'python_api'},
packages=setuptools.find_packages('python_api'),
entry_points={
'console_scripts':[
'mcs_run_in_human_input_mode=machine_common_sense.run_mcs_human_input:main'
]
}
)