-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
185 lines (166 loc) · 5.44 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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
# -*- coding: utf-8 -*-
"""
BEWEGUNG
a versatile video renderer
https://github.com/pleiszenburg/bewegung
setup.py: Used for package distribution
Copyright (C) 2020-2022 Sebastian M. Ernst <[email protected]>
<LICENSE_BLOCK>
The contents of this file are subject to the GNU Lesser General Public License
Version 2.1 ("LGPL" or "License"). You may not use this file except in
compliance with the License. You may obtain a copy of the License at
https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt
https://github.com/pleiszenburg/bewegung/blob/master/LICENSE
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
specific language governing rights and limitations under the License.
</LICENSE_BLOCK>
"""
# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# IMPORT
# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
import os
from setuptools import (
find_packages,
setup,
)
from docs.version import get_version
# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# SETUP
# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# List all versions of Python which are supported
python_minor_min = 6
python_minor_max = 9
confirmed_python_versions = [
"Programming Language :: Python :: 3.{MINOR:d}".format(MINOR=minor)
for minor in range(python_minor_min, python_minor_max + 1)
]
# Fetch readme file
with open(os.path.join(os.path.dirname(__file__), "README.md")) as f:
long_description = f.read()
# Define source directory (path)
SRC_DIR = "src"
# Version
__version__ = get_version()
# Requirements
extras_require = {
"dev": [
"coverage",
"black",
"hypothesis",
"python-lsp-server[all]", # superseeding python-language-server
"psutil",
"setuptools",
"Sphinx",
"sphinx-autodoc-typehints",
"sphinx-rtd-theme",
"sphinxembeddedvideos", # https://github.com/sphinx-contrib/youtube/issues/9#issuecomment-734295832
"myst-parser", # markdown in sphinx
"pytest",
"pytest-cov",
"twine",
"wheel",
],
"drawingboard": [
"pycairo",
"PyGObject",
],
"cairo": [
"pycairo",
],
"datashader": [
"datashader", # datashader backend (optional)
],
"matplotlib": [
"numpy",
"matplotlib", # matplotlib backend (optional)
"pycairo",
"mplcairo",
],
"ipython": [
"ipython", # for drawingboard backend (optional)
],
"numba": [
"numba", # for camera (optional)
],
"numpy": [
"numpy", # for camera (optional) and vector arrays (required)
],
"tqdm": [
"tqdm", # for progress bar during video rendering (optional)
],
"typeguard": [
"typeguard", # for type checking (optional)
],
}
extras_require["all"] = list({
rq
for target in extras_require.values()
for rq in target
})
extras_require["docs"] = list(set(extras_require["all"]) - {'PyGObject'})
# Install package
setup(
name="bewegung",
packages=find_packages(SRC_DIR),
package_dir={"": SRC_DIR},
version=__version__,
description="a versatile video renderer",
long_description=long_description,
long_description_content_type="text/markdown",
author="Sebastian M. Ernst",
author_email="[email protected]",
url="https://github.com/pleiszenburg/bewegung",
download_url="https://github.com/pleiszenburg/bewegung/archive/v%s.tar.gz"
% __version__,
license="LGPLv2",
keywords=[
"video",
"animation",
"animation-framework",
"rendering",
"rendering",
"rendering-engine",
"compositor",
],
scripts=[],
include_package_data=True,
python_requires=">=3.{MINOR:d}".format(MINOR=python_minor_min),
setup_requires=[],
install_requires=[
"Pillow",
],
extras_require=extras_require,
zip_safe=False,
entry_points={},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Operating System :: MacOS",
"Operating System :: POSIX :: BSD",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
]
+ confirmed_python_versions
+ [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Artistic Software",
"Topic :: Education",
"Topic :: Multimedia",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Presentation",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Editors",
"Topic :: Multimedia :: Sound/Audio :: Mixers",
"Topic :: Multimedia :: Video",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries",
],
)