-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 709 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (19 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
hyperdopamine_description = (
'"Learning to Represent Action Values as a Hypergraph on the Action Vertices" built on Dopamine')
setup(
name='hyperdopamine',
version='0.1.0',
description=hyperdopamine_description,
url='https://github.com/atavakol/action-hypergraph-networks',
python_requires='>= 3.5',
install_requires=['gin-config', 'absl-py', 'opencv-python', 'atari-py',
'gym', 'matplotlib', 'pandas', 'numpy'],
license='MIT',
keywords=['hyperdopamine',
'dopamine',
'reinforcement learning',
'deep learning',
'machine learning',
'python']
)