X-Git-Url: https://blacka.com/cgi-bin/gitweb.cgi?p=python-rwhoisd.git;a=blobdiff_plain;f=setup.py;h=2951ad2af4379ad4506f601c65edeae1ebd19824;hp=8062317527e370da9a5316b4872d256a8c157082;hb=HEAD;hpb=b006461004c8818992bf0b1d248f985b61e34841 diff --git a/setup.py b/setup.py index 8062317..2951ad2 100644 --- a/setup.py +++ b/setup.py @@ -4,12 +4,14 @@ from distutils.core import setup import os setup(name="python-rwhoisd", - version="0.2", + version="0.4.1", description="A lightweight RWhois server written in Python", author="David Blacka", author_email="david@blacka.com", + url="http://blacka.com/software/python-rwhoisd", packages=['rwhoisd'], - scripts=['bin/'+x for x in os.listdir('bin')], + scripts=['bin/'+x for x in os.listdir('bin') + if os.path.isfile('bin/'+x)], data_files=[('lib/pyrwhoisd/sample_data', ['sample_data/example_schema', 'sample_data/example_data'])]