forked from scherroman/mugen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (50 loc) · 1.5 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
from setuptools import setup, find_packages
version = dict()
with open("mugen/version.py") as f:
exec(f.read(), version)
optional_requirements = ['tesserocr==2.2.1']
tests_requirements = ['pytest==3.0.7', 'pytest-cov==2.4.0']
setup(
name='mugen',
version=version['__version__'],
description='A music video generator based on rhythm',
url='https://github.com/scherroman/mugen',
author='Roman Scher',
author_email='[email protected]',
license='MIT',
keywords='music-video amv montage remix rhythm video',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Multimedia :: Video',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
],
packages=find_packages(),
install_requires=[
'moviepy==0.2.3.5',
'librosa==0.7.0',
'Pillow==4.2.0',
'numpy==1.17.2',
'pysrt==1.1.1',
'tqdm==4.11.2',
'decorator==4.0.11',
'dill==0.2.7.1',
'requests==2.21.0',
'imageio==2.4.1',
'numba==0.48'
],
extras_require={
'full': optional_requirements,
'tests': tests_requirements,
'dev': optional_requirements + tests_requirements
},
entry_points={
'console_scripts': [
'mugen=scripts.cli:main'
]
}
)