Skip to content

Commit

Permalink
Merge pull request mboot-github#277 from maarten-boot/development
Browse files Browse the repository at this point in the history
set python_requires in setup.py; update version and download
  • Loading branch information
maarten-boot authored Feb 13, 2023
2 parents d1a49bd + 134946e commit 880f3dc
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This package will not support querying ip CIDR ranges or AS information
* Simple interface to access parsed WHOIS data for a given domain.
* Able to extract data for all the popular TLDs (com, org, net, biz, info, pl, jp, uk, nz, ...).
* Query a WHOIS server directly instead of going through an intermediate web service like many others do.
* Works with Python 3.x.
* Works with Python >= 3.6
* All dates as datetime objects.
* Possibility to cache results.
* Verbose output on stderr during debugging to see how the internal functions are doing their work
Expand Down
22 changes: 19 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,41 @@

setup(
name="whois",
version="0.9.11",
version="0.9.27",
description="Python package for retrieving WHOIS information of domains.",
author="DannyCork",
author_email="[email protected]",
license="MIT https://www.opensource.org/licenses/mit-license.php",
download_url="https://github.com/DannyCork/python-whois/releases/tag/0.9.11",
download_url="https://github.com/DannyCork/python-whois/releases/latest",
url="https://github.com/DannyCork/python-whois/",
platforms=["any"],
packages=["whois"],
keywords=["Python", "whois", "tld", "domain", "expiration", "cctld", "domainer", ".com", "registrar"],
keywords=[
"Python",
"whois",
"tld",
"domain",
"expiration",
"cctld",
"domainer",
".com",
"registrar",
],
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Environment :: Console",
"Programming Language :: Python",
"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 :: 3.11",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.6",
)

'''
Expand Down

0 comments on commit 880f3dc

Please sign in to comment.