-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
33 lines (26 loc) · 962 Bytes
/
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
import os
import setuptools
from src.cnaas_nms import version
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, "README.md")).read()
version = version.__version__
requires = open(os.path.join(here, "requirements.txt"), "r").read().split()
setuptools.setup(
name="cnaas_nms",
author="SUNET",
author_email="",
version=version,
description="Campus Network as-a-Service - Network Management System (Campus network automation software)",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/sunet/cnaas-nms",
classifiers=[
"Programming Language :: Python :: 3",
"License :: Copyright (c) 2019, SUNET (BSD 2-clause license)",
"Operating System :: UNIX/Linux",
],
package_dir={"": "src"},
packages=setuptools.find_packages("src", exclude=["tests"]),
include_package_data=True,
install_requires=requires,
)