-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathsetup.py
51 lines (48 loc) · 1.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
from setuptools import find_packages, setup
version = dict()
with open("mugen/version.py") as file:
exec(file.read(), version)
test_requirements = ["pytest==7.0.0", "pytest-cov==3.0.0", "pytest-xdist==2.5.0"]
development_requirements = [
"black==22.3.0",
"isort==5.10.1",
"flake8==4.0.1",
"pre-commit==2.17.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",
],
packages=find_packages(),
install_requires=[
"moviepy==1.0.3",
"librosa==0.8.1",
"Pillow==9.3.0",
"numpy==1.22.2",
"pysrt==1.1.1",
"tqdm==4.62.3",
"decorator==4.0.11",
"dill==0.3.4",
"proglog==0.1.9",
"pytesseract==0.3.8",
],
extras_require={
"tests": test_requirements,
"development": test_requirements + development_requirements,
},
entry_points={"console_scripts": ["mugen=scripts.cli.cli:main"]},
)