-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 1.05 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
from distutils.core import setup
from setuptools import find_packages
setup(
name = 'wacky-rl',
packages=find_packages(),
version = '0.0.9',
license='MIT',
description = 'Create custom reinforcement learning agents with wacky-rl.',
author = 'Maik Schürmann',
author_email = 'maik.schuermann97@gmail.com',
url = 'https://github.com/maik97/wacky-rl',
download_url = 'https://github.com/maik97/wacky-rl/archive/refs/tags/v0.0.9.tar.gz',
keywords = ['rl', 'actor_critic', 'reinforcement-learning', 'ppo', 'a2c', 'sac', 'dqn', 'python'],
install_requires=[
'torch',
'gym',
'numpy',
],
classifiers=[
'Development Status :: 3 - Alpha', # "3 - Alpha", "4 - Beta" or "5 - Production/Stable"
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.6',
],
)