forked from DeepX-inc/machina
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·36 lines (31 loc) · 773 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·36 lines (31 loc) · 773 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
35
36
#!/usr/bin/env python
import os
import pkg_resources
import sys
from setuptools import setup
from setuptools import find_packages
with open('README.md', 'r') as f:
readme = f.read()
install_requires = [
'cached_property',
'torch>=1.0.1',
'joblib>=0.11',
'gym==0.10.5',
'numpy>=1.13.3',
'terminaltables',
'pandas',
]
setup(
name='machina-rl',
version='0.2.0',
description='machina is a library for a deep reinforcement learning.',
long_description=readme,
author='Reiji Hatsugai',
author_email='reiji.hatsugai@deepx.co.jp',
url='https://github.com/DeepX-inc/machina',
license='MIT License',
packages=find_packages(),
zip_safe=False,
install_requires=install_requires,
test_suite='tests'
)