# HG changeset patch # User Richard Penman # Date 1428544742 -28800 # Node ID 1459aa5d7ce4fea51e15887b1d69e17a632f684d # Parent 9b1df2267f8464f4784ab2a16cb7fea95a5be88b added manifest to add missing tlds.txt file diff -r 9b1df2267f84 -r 1459aa5d7ce4 MANIFEST.in --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/MANIFEST.in Thu Apr 09 09:59:02 2015 +0800 @@ -0,0 +1,1 @@ +include whois/data/tlds.txt diff -r 9b1df2267f84 -r 1459aa5d7ce4 setup.py --- a/setup.py Thu Mar 26 11:49:03 2015 +0800 +++ b/setup.py Thu Apr 09 09:59:02 2015 +0800 @@ -1,9 +1,9 @@ -from setuptools import setup, find_packages import sys, os +import setuptools -version = '0.2' +version = '0.3.1' -setup( +setuptools.setup( name='python-whois', version=version, description="Whois querying and parsing of domain registration information.", @@ -19,16 +19,13 @@ keywords='whois, python', author='Richard Penman', author_email='richard@webscraping.com', - url='http://code.google.com/p/pywhois/', + url='https://bitbucket.org/richardpenman/pywhois', license='MIT', packages=['whois'], package_dir={'whois':'whois'}, - package_data={ - 'whois': ['data/*.txt'] - }, extras_require={ 'better date conversion': ["python-dateutil"] }, include_package_data=True, - zip_safe=False, + zip_safe=False )