-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
495a97d
commit 93901b9
Showing
4 changed files
with
12 additions
and
7 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
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 |
---|---|---|
|
@@ -5,8 +5,8 @@ | |
with open('README.md', 'r') as f: | ||
LONG_DESCRIPTION = f.read() | ||
|
||
DESCRIPTION = 'A simple python package for sending whois requests and parsing the responses.' | ||
VERSION = '1.1.0' | ||
DESCRIPTION = 'A simple and easy to use Python package that lets you query whois/RDAP information of a domain/IP.' | ||
VERSION = '1.1.1' | ||
REQUIREMENTS = ['log21', 'importlib_resources', 'requests'] | ||
|
||
setup( | ||
|
@@ -15,7 +15,7 @@ | |
description=DESCRIPTION, | ||
long_description=LONG_DESCRIPTION, | ||
long_description_content_type='text/markdown', | ||
url='https://github.com/MPCodeWriter21/PACKAGE_NAME', | ||
url='https://github.com/MPCodeWriter21/whois21', | ||
author='CodeWriter21', | ||
author_email='[email protected]', | ||
license='Apache License 2.0', | ||
|
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 |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
domain_registration_data_lookup | ||
from .__main__ import main | ||
|
||
__version__ = '1.1.0' | ||
__version__ = '1.1.1' | ||
__github__ = 'https://github.com/MPCodeWriter21/whois21' | ||
__author__ = 'CodeWriter21' | ||
__email__ = '[email protected]' | ||
|