-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
39 lines (33 loc) · 1.11 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
import os
import glob
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements-dev.txt", "r") as fh:
tests_require = [line for line in fh.read().split(os.linesep) if line]
with open("requirements.txt", "r") as fh:
install_requires = [line for line in fh.read().split(os.linesep) if line]
setuptools.setup(
name="edgerun-ether",
version="0.4.0.dev5",
author="Thomas Rausch",
author_email="[email protected]",
description="Ether - Synthesize plausible edge infrastructure topologies",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/edgerun/ether",
packages=setuptools.find_packages(),
include_package_data=True,
package_data={'ether.inet': ['graphs/*.graphml']},
setup_requires=['wheel'],
test_suite="tests",
tests_require=tests_require,
install_requires=install_requires,
pyton_requires='>=3.7',
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
entry_points={
},
)