-
Notifications
You must be signed in to change notification settings - Fork 56
/
setup.cfg
59 lines (53 loc) · 1.7 KB
/
setup.cfg
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
[metadata]
name = gazu
description = Gazu is a client for Zou, the API to store the data of your CG production.
long_description = file: README.rst
keywords = cg, production, asset manager, asset, shot, tasks, tracking
license = GNU Library or Lesser General Public License (LGPL)
license_file = LICENSE
author = CG Wire
author_email = [email protected]
url = https://gazu.cg-wire.com/
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Framework :: Flask
Intended Audience :: Developers
Natural Language :: English
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.6
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
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Multimedia :: Graphics
[options]
zip_safe = False
packages = find:
install_requires =
python-socketio[client]>=5.11.0,<6; python_version != '2.7'
requests>=2.25.1
Deprecated==1.2.15
pywin32>=308; sys_platform == 'win32' and python_version != '2.7'
[options.packages.find]
# ignore gazutest directory
include = gazu*
[options.extras_require]
dev =
wheel
test =
pytest
pytest-cov
requests_mock
multipart; python_version >= '3.13'
lint =
autoflake==2.3.1; python_version >= '3.8'
black==24.10.0; python_version >= '3.9'
pre-commit==4.0.1; python_version >= '3.9'
[bdist_wheel]
universal = 1