-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.cfg
47 lines (42 loc) · 1.22 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
[metadata]
name = rfc3986
version = attr: rfc3986.__version__
description = Validating URI References per RFC 3986
long_description = file: README.rst
long_description_content_type = text/x-rst
url = http://rfc3986.readthedocs.io
author = Ian Stapleton Cordasco
author_email = [email protected]
license = Apache 2.0
license_files = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Natural Language :: English
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
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 :: Implementation :: CPython
project_urls =
Source = https://github.com/python-hyper/rfc3986
[options]
packages = find:
python_requires = >=3.8
include_package_data = True
package_dir = =src
[options.packages.find]
where = src
[options.extras_require]
idna2008 =
idna
[options.package_data]
* =
LICENSE
[bdist_wheel]
universal = 1