forked from cgwire/gazu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
51 lines (47 loc) · 1.58 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
[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.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Multimedia :: Graphics
[options]
zip_safe = False
packages = find:
install_requires =
python-socketio[client]==4.2.1; python_version == "2.7"
python-socketio[client]==4.6.1; python_version >= "3.5"
deprecated==1.2.13
requests>=2.25.1,<=2.27.1
[options.packages.find]
# ignore gazutest directory
include = gazu*
[options.extras_require]
dev =
wheel
test =
pytest==6.2.5; python_version >= "3.6"
pytest==6.1.2; python_version == "3.5"
pytest==4.6.11; python_version == "2.7"
pytest-cov==2.12.1
requests_mock==1.9.3
black==21.12b0; python_version >= "3.6"
pre-commit==2.17.0; python_version >= "3.6"