-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
49 lines (41 loc) · 1.61 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
"""setup.py file."""
from setuptools import setup, find_packages
import re
with open("requirements.txt", "r") as fs:
reqs = [r for r in fs.read().splitlines() if (
len(r) > 0 and not r.startswith("#"))]
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
__author__ = "Eric Wu <[email protected]>"
# get version without importing
with open("napalm_h3c_comware/__init__.py", "r") as f:
VERSION = str(re.search('__version__ = "(.+?)"', f.read()).group(1))
setup(
name="napalm-h3c-comware",
version=VERSION,
author="Eric Wu",
author_email="[email protected]",
description="NAPALM driver for H3C Comware V7 network devices, over ssh.",
license="Apache 2.0",
long_description_content_type="text/markdown",
long_description=long_description,
url="https://github.com/napalm-automation-community/napalm-h3c-cw7-ssh/",
project_urls={
"Bug Tracker": "https://github.com/napalm-automation-community/napalm-h3c-cw7-ssh/issues",
},
classifiers=[
"Topic :: Utilities",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
],
packages=find_packages(exclude=("test*", "*demo.py")),
include_package_data=True, # declarations in MANIFEST.in
install_requires=reqs,
)