-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 1.13 KB
/
setup.py
File metadata and controls
32 lines (31 loc) · 1.13 KB
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
from setuptools import setup, find_packages
from setuptools.command.install import install
setup(name='a2c',
packages=find_packages(),
version="0.1.0",
description='A project that implements A2C',
author='Satchel Grant',
author_email='grantsrb@stanford.edu',
url='https://github.com/grantsrb/PyTorch-A2C.git',
install_requires= ["numpy",
"torch",
"tqdm",
"matplotlib",
"Pillow",
"scikit-build",
"scikit-image",
"opencv-python",
"gym",
"mlagents_envs",
"gym_unity",
],
py_modules=['a2c'],
long_description='''
A project that implements Advantage Actor Critic using
multiple processes.
''',
classifiers=[
'Intended Audience :: Science/Research',
'Operating System :: MacOS :: MacOS X :: Ubuntu',
'Topic :: Scientific/Engineering :: Information Analysis'],
)