-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
43 lines (40 loc) · 1.38 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
requirements = [
"mem_top>=0.1.6",
"orderedset>=2.0.3",
"opencv-python==4.5.3.36",
# https://github.com/opencv/opencv/releases/tag/4.4.0
"imutils>=0.5.3",
"numpy>=1.18.5",
"cvlib>=0.2.5",
"progressbar2>=3.51.4",
"tensorflow>=2.6.8",
"jsonschema>=3.2.0",
"packaging>=21.0",
"importlib_resources==5.2.2 ; python_version<'3.7'"
]
setuptools.setup(
name="find_motion",
version="1.0.0",
author="Aegilops",
author_email="41705651+aegilops@users.noreply.github.com",
description="Processes video to detect motion and objects, with tunable parameters",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/aegilops/find_motion",
entry_points={"console_scripts": ["find_motion=find_motion.find_motion:main"], },
packages=setuptools.find_packages(),
package_data={"find_motion": ["data/*"]},
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Topic :: Multimedia :: Video",
"Topic :: Scientific/Engineering :: Image Recognition"
],
)