-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.cfg
39 lines (35 loc) · 1.12 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
[metadata]
name = uritemplate
version = attr: uritemplate.__version__
description = Implementation of RFC 6570 URI Templates
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://uritemplate.readthedocs.org
author = Ian Stapleton Cordasco
author_email = [email protected]
license = BSD 3-Clause OR Apache-2.0
license_files = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved
License :: OSI Approved :: Apache Software License
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
keywords = rfc 6570 uri template
project_urls =
Source = https://github.com/python-hyper/uritemplate
[options]
packages = find:
python_requires = >=3.8
include_package_data = True
[options.package_data]
. = LICENSE, LICENSE.APACHE, LICENSE.BSD, AUTHORS.rst, HISTORY.rst
uritemplate = py.typed
[bdist_wheel]
universal = 1
[mypy]
strict = True