-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
42 lines (38 loc) · 1.16 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
[metadata]
name = dccutils_server
description = dccutils_server is a fastAPI server for DCCs based on dccutils.
long_description = file: README.rst
keywords = fastapi, dcc, cg, production
license = GNU Library or Lesser General Public License (LGPL)
license_file = LICENSE
author = CG Wire
author_email = evan@cg-wire.com
url = https://gazu.cg-wire.com/
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Intended Audience :: Developers
Natural Language :: English
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 :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Multimedia :: Graphics
[options]
zip_safe = False
packages = find:
install_requires =
fastapi==0.85.0
uvicorn==0.18.3
dccutils==0.1.8
[options.packages.find]
include = dccutils_server*
[options.extras_require]
dev =
wheel
test =
black<=22.8.0; python_version >= "3.5"
pre-commit<=2.20.0