forked from WyattBlue/auto-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
76 lines (67 loc) · 2.48 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import re
from setuptools import find_packages, setup
def pip_version():
with open("auto_editor/__init__.py") as f:
version_content = f.read()
version_match = re.search(
r"^__version__ = ['\"]([^'\"]*)['\"]", version_content, re.M
)
if version_match:
return version_match.group(1)
raise ValueError("Unable to find version string.")
with open("README.md") as f:
long_description = f.read()
setup(
name="auto-editor",
version=pip_version(),
description="Auto-Editor: Effort free video editing!",
long_description=long_description,
long_description_content_type="text/markdown",
license="Unlicense",
url="https://auto-editor.com",
project_urls={
"Bug Tracker": "https://github.com/WyattBlue/auto-editor/issues",
"Source Code": "https://github.com/WyattBlue/auto-editor",
},
author="WyattBlue",
author_email="[email protected]",
keywords="video audio media editor editing processing nonlinear automatic "
"silence-detect silence-removal silence-speedup motion-detection",
packages=find_packages(),
zip_safe=True,
install_requires=[
"numpy>=1.22.0",
"pillow==9.3.0",
"av==10.0.0",
"ae-ffmpeg==1.1.1",
],
python_requires=">=3.9",
classifiers=[
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Video",
"License :: Public Domain",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Environment :: Console",
"Natural Language :: English",
"Intended Audience :: End Users/Desktop",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
entry_points={
"console_scripts": [
"auto-editor=auto_editor.__main__:main",
"aedesc=auto_editor.subcommands.desc:main",
"aeinfo=auto_editor.subcommands.info:main",
"aesubdump=auto_editor.subcommands.subdump:main",
"aegrep=auto_editor.subcommands.grep:main",
"aelevels=auto_editor.subcommands.levels:main",
]
},
)