forked from allenai/ai2thor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (37 loc) · 1.48 KB
/
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
35
36
37
38
39
40
41
from setuptools import setup, find_packages
exec(open('ai2thor/_version.py').read())
VERSION = __version__
setup(name='ai2thor',
version=VERSION,
description='AI2 Thor framework',
long_description="AI2 Thor is a lightweight AI framework that interacts with the Unity3d Game Engine.",
classifiers=[
'Intended Audience :: Science/Research',
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
keywords='AI2 Thor API',
url='https://github.com/allenai/ai2thor',
author='Allen Institute for Artificial Intelligence',
author_email='[email protected]',
license='Apache',
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_requires=[
'flask',
'numpy',
'pyyaml',
'requests',
'progressbar2'
],
setup_requires=['pytest-runner'],
tests_require=['pytest', 'pytest-cov'],
include_package_data=False)