-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
59 lines (59 loc) · 1.77 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
54
55
56
57
58
59
from pathlib import Path
from setuptools import find_packages, setup
dependencies = ['beard-portscan','Pillow']
# read the contents of README file
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='rtspscanner',
packages=find_packages(),
version='0.1.4',
description="RTSP Camera Scanner",
author="The Bearded Tek",
author_email="[email protected]",
url="https://github.com/beardedtek-com/RTSPScanner",
long_description=long_description,
long_description_content_type='text/markdown',
license='AGPLv3',
project_urls={
"Bug Tracker": "https://github.com/beardedtek-com/RTSPScanner/issues",
},
keywords=[
"port",
"scanner",
"multithreading",
"queue",
"terminal",
"utility",
"rtsp",
"camera",
"frigate",
"fevr",
"beardedtek",
"python3",
"cctv",
"security"
],
classifiers=[
"Environment :: Console",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
"Topic :: Home Automation",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking",
"Topic :: Multimedia :: Video",
"Topic :: Multimedia :: Video :: Capture",
],
install_requires=dependencies,
py_modules=['rtspscanner'],
entry_points={
'console_scripts': [
"rtspscanner=rtspscanner:main"
],
},
)