forked from rthalley/dnspython
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved the metadata into setup.cfg from setup.py.
Fixed the dependency on poetry instead of poetry-core in pyproject.toml. Fetching the version from git tags now when using setuptools (for poetry we cannot do that currently, see python-poetry/poetry#693).
- Loading branch information
Showing
3 changed files
with
58 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,54 @@ | ||
[metadata] | ||
name = dnspython | ||
author = Bob Halley | ||
author_email = halley@dnspython.org | ||
license = ISC | ||
license_file = LICENSE | ||
description = DNS toolkit | ||
url = http://www.dnspython.org | ||
long_description = dnspython is a DNS toolkit for Python. It supports almost all | ||
record types. It can be used for queries, zone transfers, and dynamic | ||
updates. It supports TSIG authenticated messages and EDNS0. | ||
|
||
dnspython provides both high and low level access to DNS. The high | ||
level classes perform queries for data of a given name, type, and | ||
class, and return an answer set. The low level classes allow | ||
direct manipulation of DNS zones, messages, names, and records. | ||
long_description_content_type = text/plain | ||
classifiers = | ||
Development Status :: 5 - Production/Stable | ||
Intended Audience :: Developers | ||
Intended Audience :: System Administrators | ||
License :: OSI Approved :: ISC License (ISCL) | ||
Operating System :: POSIX | ||
Operating System :: Microsoft :: Windows | ||
Programming Language :: Python | ||
Topic :: Internet :: Name Service (DNS) | ||
Topic :: Software Development :: Libraries :: Python Modules | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.6 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
provides = dns | ||
|
||
[options] | ||
packages = | ||
dns | ||
dns.rdtypes | ||
dns.rdtypes.IN | ||
dns.rdtypes.ANY | ||
dns.rdtypes.CH | ||
python_requires = >=3.6 | ||
test_suite = tests | ||
setup_requires = setuptools>=44; wheel; setuptools_scm[toml]>=3.4.3 | ||
|
||
[options.extras_require] | ||
DOH = requests; requests-toolbelt | ||
IDNA = idna>=2.1 | ||
DNSSEC = cryptography>=2.6 | ||
trio = trio>=0.14.0; sniffio>=1.1 | ||
curio = curio>=1.2; sniffio>=1.1 | ||
|
||
[options.package_data] | ||
dns = py.typed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters