-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
27 lines (27 loc) · 1.08 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
from setuptools import setup, find_packages
setup(
name = 'gym_epidemic',
packages = find_packages(),
version = '0.0.5',
license='BSD-3',
description = 'An OpenAI Gym to benchmark AI Reinforcement Learning algorithms in epidemic control problems',
author = 'Marcus Lapeyrolerie',
author_email = '[email protected]',
url = 'https://github.com/boettiger-lab/gym_epidemic',
download_url = 'https://github.com/boettiger-lab/gym_epidemic/releases/tag/v0.0.5',
keywords = ['Reinforcement Learning', 'Epidemic Control', 'Epidemics',
"COVID-19", "AI", "stable-baselines", "OpenAI Gym",
"Artificial Intelligence", "Epidemiology"],
install_requires=[
'gym',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)