-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (29 loc) · 861 Bytes
/
setup.py
File metadata and controls
executable file
·34 lines (29 loc) · 861 Bytes
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
import os.path
import sys
from setuptools import setup, find_packages
sys.path.append(os.path.join(os.path.dirname(__file__), 'receptor'))
from receptor.config import version
install_requires = [
'numpy',
'torch',
'gym>=0.9.1',
'six',
'opencv-python',
'tensorboard',
'tensorboardX'
]
extras_require = {
'universe': ['universe>=0.21.3']
}
setup(name='receptor',
version=version,
description='Reinforcement Learning framework based on PyTorch and OpenAI Gym',
url='https://github.com/dbobrenko/receptor',
author='Dmytro Bobrenko',
author_email='d.bobrenko@gmail.com',
license='MIT',
packages=[package for package in find_packages()
if package.startswith('receptor')],
install_requires=install_requires,
extras_require=extras_require,
zip_safe=False)