-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
69 lines (61 loc) · 1.82 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
65
66
67
68
69
"""
Setup file for hydraulic_infrastructure_realisation.
Use setup.cfg to configure your project.
This file was generated with PyScaffold 3.1.
PyScaffold helps you to put up the scaffold of your new Python project.
Learn more under: https://pyscaffold.org/
"""
import sys
from pkg_resources import require, VersionConflict
from setuptools import setup, find_packages
try:
require("setuptools>=38.3")
except VersionConflict:
print("Error: version of setuptools is too old (<38.3)!")
sys.exit(1)
requires = [
"matplotlib",
"pandas",
"numpy",
"seaborn",
"simpy",
"scipy",
"sphinx_rtd_theme",
]
setup_requirements = [
"pytest-runner",
]
tests_require = [
"pytest",
"pytest-cov",
]
with open("README.md", "r") as des:
long_description = des.read()
setup(
author="Mark van Koningsveld and Joris den Uijl",
author_email="m.vankoningsveld@tudelft.nl",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
description="OpenQTSim facilitates discrete event simulation of queues with a Kendall notation.",
install_requires=requires,
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
keywords="Queueing Theory",
name="openqtsim",
packages=find_packages(include=["openqtsim"]),
setup_requires=setup_requirements,
test_suite="tests",
tests_require=tests_require,
url="https://github.com/TUDelft-CITG/OpenQTSim",
version="v0.5.1",
zip_safe=False,
)