added manifest to add missing tlds.txt file
authorRichard Penman
Thu, 09 Apr 2015 09:59:02 +0800
changeset 51 1459aa5d7ce4
parent 50 9b1df2267f84
child 52 1f80f6dec7ac
child 53 e2eaf1755fce
added manifest to add missing tlds.txt file
MANIFEST.in
setup.py
--- /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
--- 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
 )