forked from WyattBlue/auto-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
83 lines (70 loc) · 2.42 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
77
78
79
80
81
82
83
'''setup.py'''
"""
Create a build for pip
This code should only be executed by developers, not users.
"""
import os
import re
import sys
from setuptools import setup, find_packages
def pip_version():
with open(os.path.abspath('auto_editor/__init__.py')) as f:
version_content = f.read()
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]",
version_content, re.M)
if(version_match):
print(version_match)
return version_match.group(1)
raise ValueError('Unable to find version string.')
if(sys.argv[-1] == 'publish'):
from shutil import rmtree
rmtree('build')
rmtree('dist')
os.system('python3 setup.py sdist bdist_wheel')
os.system('twine upload dist/*')
sys.exit()
with open('README.md', 'r') 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://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(),
include_package_data=True,
install_requires=[
'numpy',
'audiotsm2',
'youtube-dl',
'requests',
'av',
],
classifiers=[
'Topic :: Multimedia :: Video',
'License :: Public Domain',
'License :: OSI Approved :: The Unlicense (Unlicense)',
'Environment :: Console',
'Natural Language :: English',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: IronPython',
'Programming Language :: Python :: Implementation :: Jython',
],
entry_points={
"console_scripts": ["auto-editor=auto_editor.__main__:main"]
}
)