forked from joepie91/python-whois
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 1.09 KB
/
setup.py
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
from setuptools import setup
setup(name='pythonwhois',
version='2.4.5',
description='Module for retrieving and parsing WHOIS data for domains. Supports most domains. No dependencies.',
author='Sven Slootweg',
author_email='[email protected]',
url='http://cryto.net/pythonwhois',
packages=['pythonwhois'],
package_dir={"pythonwhois": "pythonwhois"},
package_data={"pythonwhois": ["*.dat"]},
install_requires=['argparse'],
provides=['pythonwhois'],
scripts=["pwhois"],
license="WTFPL",
classifiers=[
'Development Status :: 1 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: Microsoft',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: User Interfaces'
]
)