-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (43 loc) · 1.35 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
42
43
44
45
from setuptools import find_packages, setup
__version__ = '0.0.1'
setup(
name='assistance_games',
version=__version__,
description='Supporting code for Assistance Games as a Framework paper',
author='Center for Human-Compatible AI',
author_email='[email protected]',
python_requires='>=3.5.0,<3.8',
url='https://github.com/HumanCompatibleAI/assistance-games',
packages=find_packages('src'),
package_dir={'': 'src'},
package_data={
'': [
'assets/*',
],
},
install_requires=[
'numpy>=1.13',
'scipy>=0.19',
'sparse>=0.9.1',
'gym<=0.21.0',
'lark-parser>=0.8',
'stable-baselines>=2.9',
'tensorflow>=1.15.0,<2.0',
'cvxpy>=1.1.13',
'pyglet',
],
tests_require=['pytest'],
include_package_data=True,
license='MIT',
classifiers=[
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
)