-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
36 lines (29 loc) · 1.04 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
from setuptools import setup, find_packages
package_name = "netcfgbu"
package_version = open("VERSION").read().strip()
def requirements(filename="requirements.txt"):
return open(filename.strip()).readlines()
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name=package_name,
version=package_version,
description="Network Configuration Backup",
long_description=long_description,
long_description_content_type="text/markdown",
author="Jeremy Schulman",
packages=find_packages(),
include_package_data=True,
install_requires=requirements(),
scripts=["bin/netcfgbu"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking",
],
)