forked from hubbs5/or-gym
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 949 Bytes
/
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
33
34
#!usr/bin/env python
from setuptools import setup, find_packages
import sys
import os
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'or_gym'))
from or_gym.version import VERSION
setup(name='or-gym',
version=VERSION,
description='OR-Gym: A set of environments for developing reinforcement learning agents for OR problems.',
author='Christian Hubbs, Hector Perez Parra, Owais Sarwar',
license='MIT',
url='https://github.com/hubbs5/or-gym',
packages=find_packages(),
install_requires=[
'gym>=0.15.0',
'numpy>=1.16.1',
'scipy>=1.0',
'matplotlib>=3.1',
'networkx>=2.3'],
zip_safe=False,
python_requires='>=3.5',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
)