forked from cgwire/dccutils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
37 lines (33 loc) · 1008 Bytes
/
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
[metadata]
name = dccutils
description = Classes to abstract DCC functions and make your code DCC work agnostic
long_description = file: README.rst
version = attr: dccutils.__version__.__version__
keywords = cg, vfx, pipeline, production, asset manager
license = MIT
license_file = LICENSE
author = CGWire
author_email = [email protected]
url = https://github.com/cgwire/dcc-utils
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Natural Language :: English
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Multimedia :: Graphics
[options]
zip_safe = False
packages = find:
[options.packages.find]
include = dccutils*
[options.extras_require]
dev =
wheel
test =
pytest
pytest-cov