equal
deleted
inserted
replaced
1 from setuptools import setup, find_packages |
|
2 import sys, os |
1 import sys, os |
|
2 import setuptools |
3 |
3 |
4 version = '0.2' |
4 version = '0.3.1' |
5 |
5 |
6 setup( |
6 setuptools.setup( |
7 name='python-whois', |
7 name='python-whois', |
8 version=version, |
8 version=version, |
9 description="Whois querying and parsing of domain registration information.", |
9 description="Whois querying and parsing of domain registration information.", |
10 long_description='', |
10 long_description='', |
11 classifiers=[ |
11 classifiers=[ |
17 'Topic :: Internet :: WWW/HTTP' |
17 'Topic :: Internet :: WWW/HTTP' |
18 ], |
18 ], |
19 keywords='whois, python', |
19 keywords='whois, python', |
20 author='Richard Penman', |
20 author='Richard Penman', |
21 author_email='richard@webscraping.com', |
21 author_email='richard@webscraping.com', |
22 url='http://code.google.com/p/pywhois/', |
22 url='https://bitbucket.org/richardpenman/pywhois', |
23 license='MIT', |
23 license='MIT', |
24 packages=['whois'], |
24 packages=['whois'], |
25 package_dir={'whois':'whois'}, |
25 package_dir={'whois':'whois'}, |
26 package_data={ |
|
27 'whois': ['data/*.txt'] |
|
28 }, |
|
29 extras_require={ |
26 extras_require={ |
30 'better date conversion': ["python-dateutil"] |
27 'better date conversion': ["python-dateutil"] |
31 }, |
28 }, |
32 include_package_data=True, |
29 include_package_data=True, |
33 zip_safe=False, |
30 zip_safe=False |
34 ) |
31 ) |