-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
40 lines (36 loc) · 1.14 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
from os import path
import codecs
from setuptools import setup, find_packages
HERE = path.abspath(path.dirname(__file__))
with codecs.open(path.join(HERE, 'README.md'), encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
setup(
name='anyrl',
version='0.12.23',
description='A library for Reinforcement Learning',
long_description=LONG_DESCRIPTION,
url='https://github.com/unixpickle/anyrl-py',
author='Alex Nichol',
author_email='[email protected]',
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='ai reinforcement learning',
packages=find_packages(exclude=['examples']),
install_requires=[
'numpy>=1.0.0,<2.0.0',
'cloudpickle>=0.4.0',
'gym>=0.9.6,<0.11.0',
'pandas>=0.20.0,<0.24.0'
],
extras_require={
"tf": ["tensorflow>=1.0.0"],
"tf_gpu": ["tensorflow-gpu>=1.0.0"],
"mpi": ["mpi4py>=2.0.0,<3.0.0"]
}
)