-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
66 lines (55 loc) · 1.83 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
#!/usr/bin/env python3
# flake8: noqa
import os
import setuptools
def requirements(fname):
return [
line.strip() for line in open(os.path.join(os.path.dirname(__file__), fname))
]
"""
pwd = os.path.dirname(__file__)
with open(os.path.join(pwd, "VERSION")) as f:
version = f.read().strip()
assert len(version.split(".")) == 3, "bad version spec"
majorminor = version.rsplit(".", 1)[0]
extras = {}
extras["docs"] = requirements("docs/requirements.txt")
extras["quality"] = [
"black",
"isort",
"flake8",
]
extras["all"] = extras["docs"] + extras["quality"]
"""
reqs = requirements("requirements.txt")
# main setup kw args
setup_kwargs = {
"name": "success6g-edge",
#"version": version,
"description": "SUCCESS-6G",
#"long_description": open("README.MD", "r", encoding="utf-8").read(),
"long_description_content_type": "text/markdown",
# "long_description": long_description,
"author": "Pavol Mulinka",
"author_email": "[email protected]",
"url": "https://github.com/5uperpalo/success6g-edge",
"license": "MIT",
"install_requires": reqs,
#"extras_require": extras,
"python_requires": ">=3.8.0",
"classifiers": [
"Environment :: Other Environment",
"Framework :: Jupyter",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
"zip_safe": True,
"package_data": {"success6g-edge": ["data/*"]},
"packages": setuptools.find_packages(exclude=["test_*.py"]),
}
if __name__ == "__main__":
setuptools.setup(**setup_kwargs)