forked from richardpenman/whois
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (37 loc) · 1.16 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
29
30
31
32
33
34
35
36
37
38
39
40
import sys, os
import setuptools
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setuptools.setup(
name='python-whois',
version='0.8.2',
description="Whois querying and parsing of domain registration information.",
long_description=read('README.rst'),
install_requires=[
'future',
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
keywords='whois, python',
author='Richard Penman',
author_email='[email protected]',
url='https://github.com/richardpenman/whois',
license='MIT',
packages=['whois'],
package_dir={'whois':'whois'},
extras_require={
'better date conversion': ["python-dateutil"]
},
test_suite='nose.collector',
tests_require=['nose', 'simplejson'],
include_package_data=True,
zip_safe=False
)