-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
setup.py
168 lines (143 loc) · 4.45 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
#!/usr/bin/env python
"""MoviePy setup script."""
import sys
from pathlib import Path
try:
from setuptools import find_packages, setup
from setuptools.command.test import test as TestCommand
except ImportError:
try:
import ez_setup
ez_setup.use_setuptools()
except ImportError:
raise ImportError(
"MoviePy could not be installed, probably because "
"neither setuptools nor ez_setup are installed on this computer.\n"
"Install setuptools with $ (sudo) pip install setuptools and "
"try again."
)
class PyTest(TestCommand):
"""Handle test execution from setup."""
user_options = [("pytest-args=", "a", "Arguments to pass into pytest")]
def initialize_options(self):
"""Initialize the PyTest options."""
TestCommand.initialize_options(self)
self.pytest_args = ""
def finalize_options(self):
"""Finalize the PyTest options."""
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
"""Run the PyTest testing suite."""
try:
import pytest
except ImportError:
raise ImportError(
"Running tests requires additional dependencies.\n"
"Please run $ pip install moviepy[test]"
)
errno = pytest.main(self.pytest_args.split(" "))
sys.exit(errno)
cmdclass = {"test": PyTest} # Define custom commands.
if "build_docs" in sys.argv:
try:
from sphinx.setup_command import BuildDoc
except ImportError:
raise ImportError(
"Running the documentation builds has additional dependencies.\n"
"Please run $ pip install moviepy[doc]"
)
cmdclass["build_docs"] = BuildDoc
__version__ = Path("moviepy/version.py").read_text().strip().split('"')[1][:-1]
# Define the requirements for specific execution needs.
requires = [
"decorator>=4.0.2,<6.0",
"imageio>=2.5,<3.0",
"imageio_ffmpeg>=0.2.0",
"numpy>=1.17.3",
"proglog<=1.0.0",
]
optional_reqs = [
"pygame>=1.9.3",
"python-dotenv>=0.10",
"opencv-python",
"scikit-image",
"scikit-learn",
"scipy",
"matplotlib",
"youtube_dl",
]
doc_reqs = [
"numpydoc<2.0",
"Sphinx==3.4.3",
"sphinx-rtd-theme==0.5.1",
]
test_reqs = [
"coveralls>=3.0,<4.0",
"pytest-cov>=2.5.1,<3.0",
"pytest>=3.0.0,<7.0.0",
]
lint_reqs = [
"black>=22.3.0",
"flake8>=4.0.1",
"flake8-absolute-import>=1.0",
"flake8-docstrings>=1.6.0",
"flake8-rst-docstrings>=0.2.5",
"flake8-implicit-str-concat==0.3.0",
"isort>=5.10.1",
"pre-commit>=2.19.0",
]
extra_reqs = {
"optional": optional_reqs,
"doc": doc_reqs,
"test": test_reqs,
"lint": lint_reqs,
}
# Load the README.
readme = Path("README.rst").read_text()
setup(
name="moviepy",
version=__version__,
author="Zulko 2017",
description="Video editing with Python",
long_description=readme,
url="https://zulko.github.io/moviepy/",
project_urls={
"Source": "https://github.com/Zulko/moviepy",
},
license="MIT License",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Multimedia",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Multimedia :: Video",
"Topic :: Multimedia :: Video :: Capture",
"Topic :: Multimedia :: Video :: Conversion",
],
keywords="video editing audio compositing ffmpeg",
packages=find_packages(exclude=["docs", "tests"]),
cmdclass=cmdclass,
command_options={
"build_docs": {
"build_dir": ("setup.py", "./docs/build"),
"config_dir": ("setup.py", "./docs"),
"version": ("setup.py", __version__.rsplit(".", 2)[0]),
"release": ("setup.py", __version__),
}
},
tests_require=test_reqs,
install_requires=requires,
extras_require=extra_reqs,
)