-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.cfg
More file actions
61 lines (53 loc) · 1.63 KB
/
setup.cfg
File metadata and controls
61 lines (53 loc) · 1.63 KB
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
[devpi:upload]
formats = sdist.tgz,bdist_wheel
[metadata]
name = devpi-tokens
description = "devpi-tokens: add support for constrained access tokens to devpi-client and devpi-server"
long_description = file: README.rst, CHANGELOG.short.rst
long_description_content_type = text/x-rst
version = attr: devpi_tokens.__version__
author = Florian Schulze and Contributors
author_email = mail@florian-schulze.net
license = MIT
license_file = LICENSE
url = https://github.com/devpi/devpi-tokens
project_urls =
Bug Tracker = https://github.com/devpi/devpi-tokens/issues
Source Code = https://github.com/devpi/devpi-tokens
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Plugins
Intended Audience :: Developers
Intended Audience :: System Administrators
License :: OSI Approved :: MIT License
Operating System :: POSIX
Operating System :: Microsoft :: Windows
Operating System :: MacOS :: MacOS X
Topic :: Utilities
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
[options]
packages = devpi_tokens
package_dir =
= src
include_package_data = True
install_requires =
pymacaroons
python_requires = >=3.8
zip_safe = True
[options.extras_require]
client =
delta
devpi-client>=4.3.0
server =
devpi-server>=6.10.0
[options.entry_points]
devpi_client =
devpi-tokens = devpi_tokens.client
devpi_server =
devpi-tokens = devpi_tokens.server