-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
59 lines (53 loc) · 1.59 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
# read the contents of your README file
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
requirements = [
'coord-sim==2.2.1',
'click==7.0',
'numpy>=1.16.5,<1.19',
'keras==2.2.5',
'keras-rl==0.4.2',
'tensorflow==1.14.0',
'cloudpickle==1.2',
'gym[atari]==0.14.0',
'pandas==1.1.5',
'h5py==2.10',
'protobuf==3.20.3'
]
test_requirements = [
'flake8',
'nose2'
]
setup(
name='deepcoord',
version='1.1.2',
description='DeepCoord: Self-Learning Network and Service Coordination Using Deep Reinforcement Learning',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/RealVNF/DeepCoord',
author='Stefan Schneider',
package_dir={'': 'src'},
packages=find_packages('src'),
package_data={'rlsp.agents': ['logging.conf']},
python_requires=">=3.6, <3.8",
install_requires=requirements + test_requirements,
tests_require=test_requirements,
test_suite='nose2.collector.collector',
zip_safe=False,
entry_points={
'console_scripts': [
"deepcoord=rlsp.agents.main:cli",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)