-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·43 lines (34 loc) · 1.12 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
#!/usr/bin/env python3
# Author: Anthony Ruhier
"""
Framework that helps setting a QoS on Linux
See:
https://github.com/Anthony25/python_tc_qos
"""
from os import path
from setuptools import setup
here = path.abspath(path.dirname(__file__))
setup(
name="pyqos",
version="0.3.0",
description="Framework that helps setting a QoS on Linux",
long_description=open(
path.join(path.dirname(__file__), "README.mkd")
).read(),
url="https://github.com/Anthony25/pyqos",
author="Anthony25 <Anthony Ruhier>",
author_email="anthony.ruhier@gmail.com",
license="Simplified BSD",
classifiers=[
"Development Status :: 4 - Beta",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Topic :: System :: Networking",
"License :: OSI Approved :: BSD License",
],
keywords="networking qos linux development",
packages=["pyqos", "pyqos.algorithms", "pyqos.backend"],
install_requires=["argparse", ],
setup_requires=['pytest-runner', ],
tests_require=['pytest', 'pytest-cov', "pytest-mock", "pytest-xdist"],
)