forked from intrig-unicamp/gym
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (61 loc) · 1.87 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
60
61
62
63
64
from setuptools import setup, find_packages
with open("README.md") as f:
readme = f.read()
with open("gym/__init__.py") as f:
for line in f:
if line.startswith("__version__"):
version = line.split('"')[1]
setup(
name="gym",
version="0.3.0",
description="Gym - VNF Testing Framework",
long_description=readme,
long_description_content_type="text/markdown",
author="Raphael Vicente Rosa",
packages=find_packages(exclude=("tests",)),
namespace_packages=["gym"],
include_package_data=True,
keywords=["gym", "VNF", "test", "benchmark"],
license="Apache License v2.0",
url="https://github.com/raphaelvrosa/gym",
download_url="https://github.com/raphaelvrosa/gym",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Topic :: Utilities",
"License :: OSI Approved :: Apache Software License",
],
scripts=[
"gym/agent/gym-agent",
"gym/monitor/gym-monitor",
"gym/manager/gym-manager",
"gym/player/gym-player",
"gym/infra/gym-infra",
"gym/cli/gym-cli",
],
install_requires=[
"asyncio<=3.4.3",
"protobuf<=3.12.2",
"grpclib<=0.3.2",
"grpcio-tools<=1.31.0",
"pyang<=2.3.2",
"pyangbind<=0.8.1",
"jinja2<=2.11.2",
"PyYAML<=5.3.1",
"pandas<=1.1.0",
"docker<=4.1.0",
"psutil<=5.7.0",
"paramiko<=2.6.0",
"scp<=0.13.2",
"prompt_toolkit==3.0.6",
"influxdb==5.3.0",
"aiohttp==3.6.2",
],
python_requires=">=3.7",
setup_requires=["setuptools>=41.1.0"],
)