-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
53 lines (51 loc) · 1.57 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
50
51
52
53
import setuptools
import webcamd as wd
with open('README.md', 'r') as file:
long_description = file.read()
setuptools.setup(
name=wd.APP_NAME,
version=wd.APP_VERSION,
author=wd.APP_AUTHOR,
maintainer=wd.MAINTAINER_NAME,
maintainer_email=wd.MAINTAINER_EMAIL,
license=wd.APP_LICENSE,
description=wd.APP_DESCRIPTION,
long_description=long_description,
long_description_content_type='text/markdown',
url=wd.APP_URL,
project_urls={
'Documentation': 'https://github.com/dmitri-mcguckin/webcamd/blob/main/README.md',
'Bug Tracking': 'https://github.com/dmitri-mcguckin/webcamd/issues'
},
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: User Interfaces",
"Topic :: System :: Monitoring",
"Topic :: System :: Networking :: Monitoring :: Hardware Watchdog"
],
install_requires=[
"opencv-python == 4.5.3.56",
"PIL-Tools == 1.1.0"
],
extras_require={
"dev": [
"setuptools",
"wheel",
"flake8",
"twine",
"sphinx",
"sphinx_rtd_theme",
]
},
python_requires='>=3.9.0',
entry_points={
"console_scripts": [
f'{wd.APP_NAME} = webcamd.__main__:main'
]
}
)