-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
84 lines (75 loc) · 2.03 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
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
[metadata]
name = rez-deliver
version = attr: deliver._version.__version__
description = Rez package deployment tool
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/davidlatwe/rez-deliver
author = davidlatwe
author_email = davidlatwe@gmail.com
maintainer = davidlatwe
maintainer_email = davidlatwe@gmail.com
license = LGPLv3
license_file = LICENSE
platforms = any
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Programming Language :: Python :: 3
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
Topic :: Utilities
Topic :: Software Development
Topic :: System :: Software Distribution
keywords = package resolve version build install software management
project_urls =
Source=https://github.com/davidlatwe/rez-deliver
Tracker=https://github.com/davidlatwe/rez-deliver/issues
[options]
zip_safe = true
python_requires = >=3, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
install_requires =
packages = find:
package_dir =
= src
include_package_data = true
[options.packages.find]
where = src
exclude =
tests*
[options.entry_points]
console_scripts =
rez-deliver = deliver.rezplugins.command.deliver:rez_cli
_deliver_mk = deliver.maker._main:run
[options.package_data]
deliver.rezplugins = */rezconfig
deliver.gui =
resources/*.qss
resources/images/*.svg
resources/images/*.png
resources/fonts/*/*.ttf
resources/fonts/*/*LICENSE*
[options.extras_require]
gui =
qt5.py
pyside2
tests =
pytest
[sdist]
formats = gztar
[bdist_wheel]
universal = true
[flake8]
exclude =
tests
[tool:pytest]
filterwarnings =
ignore
default:::deliver