-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (24 loc) · 946 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
from setuptools import setup, find_packages
with open("README.md") as fh:
long_description = fh.read()
setup(
name="switch-config-render",
version="0.2.1",
description="A Python library for SVG network switch configuration rendering.",
long_description=long_description,
author="Josef Schneider",
author_email="[email protected]",
packages=find_packages(),
install_requires=["svgwrite"],
extras_require={"test": ["pytest", "pytest-cov"]},
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)