-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
83 lines (76 loc) · 2.04 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
[metadata]
name = rezup-api
# version = versioning by setuptools_scm, see pyproject.toml
description = Rez launching environment manager
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/davidlatwe/rezup
author = davidlatwe
author_email = [email protected]
maintainer = davidlatwe
maintainer_email = [email protected]
license = Apache
license_file = LICENSE
platforms = any
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
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 :: 3.10
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/rezup
Tracker=https://github.com/davidlatwe/rezup/issues
[options]
zip_safe = false
packages = find:
include_package_data = true
package_dir =
= src
install_requires =
click>=7.1
distlib>=0.3.1,<1
colorama
virtualenv>=20.4.4,<21
shellingham>=1.4.0,<2
python-dotenv>=0.17,<1
pathlib2; python_version < '3.0'
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
[options.packages.find]
where = src
exclude =
tests
[options.package_data]
rezup = rezup.toml
rezup.launch = up.*
[options.extras_require]
tests =
pytest
mock
docs =
mkdocs
mkdocs-material
mkdocstrings
[sdist]
formats = gztar
[bdist_wheel]
universal = true
[flake8]
exclude =
build
src/rezup/_vendor
venv