forked from mrbitsdcf/python-whois
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 1020 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 1020 Bytes
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
from distutils.core import setup
setup(
name='whois',
version='0.9.11',
description='Python package for retrieving WHOIS information of domains.',
author='DannyCork',
author_email='ddarko@ddarko.org',
license='MIT http://www.opensource.org/licenses/mit-license.php',
download_url='https://github.com/DannyCork/python-whois/releases/tag/0.9.11',
url='https://github.com/DannyCork/python-whois/',
platforms=['any'],
packages=['whois'],
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.7',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)
'''
test_suite='testsuite',
entry_points="""
[console_scripts]
cmd = package:main
""",
'''