summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Halley <halley@nominum.com>2011-07-18 15:05:42 -0700
committerBob Halley <halley@nominum.com>2011-07-18 15:05:42 -0700
commitbf436f21b9b6c049f76cd9c5033d8b6fd254da96 (patch)
tree68d2102bba015c37c251f6e893ae4ef3db8f26e7
parentb2a2d96ebc334adb2d81efaa54e98d83406927bf (diff)
downloaddnspython-bf436f21b9b6c049f76cd9c5033d8b6fd254da96.tar.gz
packaging updates
-rw-r--r--Makefile10
-rwxr-xr-xsetup.py4
2 files changed, 7 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 15a1e79..74469a3 100644
--- a/Makefile
+++ b/Makefile
@@ -34,15 +34,15 @@ distclean: clean docclean
rm -f MANIFEST
doc:
- epydoc -n dnspython -u http://www.dnspython.org \
+ epydoc -n dnspython3 -u http://www.dnspython.org \
dns/*.py dns/rdtypes/*.py dns/rdtypes/ANY/*.py \
dns/rdtypes/IN/*.py
dockits: doc
- mv html dnspython-html
- tar czf html.tar.gz dnspython-html
- zip -r html.zip dnspython-html
- mv dnspython-html html
+ mv html dnspython3-html
+ tar czf html.tar.gz dnspython3-html
+ zip -r html.zip dnspython3-html
+ mv dnspython3-html html
docclean:
rm -rf html.tar.gz html.zip html
diff --git a/setup.py b/setup.py
index 276cd06..8af73ba 100755
--- a/setup.py
+++ b/setup.py
@@ -25,7 +25,7 @@ kwargs = {
'version' : version,
'description' : 'DNS toolkit',
'long_description' : \
- """dnspython is a DNS toolkit for Python. It supports almost all
+ """dnspython3 is a DNS toolkit for Python 3. It supports almost all
record types. It can be used for queries, zone transfers, and dynamic
updates. It supports TSIG authenticated messages and EDNS0.
@@ -39,7 +39,7 @@ direct manipulation of DNS zones, messages, names, and records.""",
'url' : 'http://www.dnspython.org',
'packages' : ['dns', 'dns.rdtypes', 'dns.rdtypes.IN', 'dns.rdtypes.ANY'],
'download_url' : \
- 'http://www.dnspython.org/kits/%s/dnspython3-%s.tar.gz' % (version,
+ 'http://www.dnspython.org/kits3/%s/dnspython3-%s.tar.gz' % (version,
version),
'classifiers' : [
"Development Status :: 5 - Production/Stable",