-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (33 loc) · 1.31 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
"""
Created on September 22, 2015
@author: Aitor Gómez Goiri <[email protected]>
To install/reinstall/uninstall the project and its dependencies using pip:
pip install ./
pip install ./ --upgrade
pip uninstall ptdockertest
"""
from setuptools import setup # , find_packages
setup(name="ptdockertest",
version="0.1",
description="Project which measures the performance of the Docker-based Packet Tracer.",
# long_description = "",
author="Aitor Gomez-Goiri",
author_email="[email protected]",
maintainer="Aitor Gomez-Goiri",
maintainer_email="[email protected]",
url="https://github.com/PTAnywhere/performance-testing",
# license = "http://www.apache.org/licenses/LICENSE-2.0",
platforms=["any"],
packages=["ptdockertest"],
install_requires=["docker-py", "ptchecker", "SQLAlchemy", "humanfriendly", "numpy"],
dependency_links=[
'git+https://github.com/PTAnywhere/pt-checker.git#egg=ptchecker-0.1'
],
entry_points={
"console_scripts": [
"prepare-benchmark = ptdockertest.prepare_benchmark:entry_point",
"run-benchmark = ptdockertest.run_benchmark:entry_point",
"generate-plots = ptdockertest.generate_plots:entry_point",
],
},
)