-
Notifications
You must be signed in to change notification settings - Fork 95
/
setup.py
45 lines (38 loc) · 1.15 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
33
34
35
36
37
38
39
40
41
42
43
44
45
#!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'))
with open(os.path.join('or_gym', 'version.py')) as version_file:
version = version_file.read().strip()
VERSION = version.split("=")[-1].replace("'", "")
# version = {}
# with open("or_gym/version.py") as fp:
# exec(fp.read(), version)
# later on we use: version['__version__']
# 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.21.0',
'numpy>=1.16.1',
'pandas>=1.2',
'scipy>=1.0',
'matplotlib>=3.1',
'networkx>=2.3'
],
zip_safe=False,
python_requires='>=3.7',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
)