-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
28 lines (26 loc) · 1.02 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="netsurv",
version="0.1.5",
author="Eliot Woodrich, Ebraheem AlAthari",
author_email="eliot@woodrich.com",
description="Configure IP cameras.",
long_description="Python library for configuring a wide range of IP cameras which use the NETsurveillance ActiveX plugin (aka DVRIP, Sofia)",
long_description_content_type="text/markdown",
url="https://github.com/sofia-netsurv/python-netsurv",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.5",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.5",
project_urls={
"Source": "https://github.com/sofia-netsurv/python-netsurv",
"Bug Reports": "https://github.com/sofia-netsurv/python-netsurv/issues",
},
)