-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
79 lines (71 loc) · 1.99 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
[metadata]
name = rez-sweet
version = attr: sweet._version.__version__
description = Rez suite composing GUI tool
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/davidlatwe/sweet
author = davidlatwe
author_email = [email protected]
maintainer = davidlatwe
maintainer_email = [email protected]
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/sweet
Tracker=https://github.com/davidlatwe/sweet/issues
[options]
zip_safe = true
python_requires = >=3, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*
install_requires =
rez
colorama
packages = find:
package_dir =
= src
include_package_data = true
[options.packages.find]
where = src
exclude =
tests*
[options.entry_points]
console_scripts =
rez-sweet = sweet.rezplugins.command.sweet:rez_cli
[options.package_data]
sweet =
gui/resources/*.py
gui/resources/*.qrc
gui/resources/icons/*.svg
gui/resources/fonts/*/*.ttf
gui/resources/fonts/*/*LICENSE*
[options.extras_require]
gui =
pyside2
tests =
pytest
[sdist]
formats = gztar
[bdist_wheel]
universal = true
[tool:pytest]
env =
PYTHONWARNINGS=ignore:DEPRECATION::pip._internal.cli.base_command
PYTHONIOENCODING=utf-8