Skip to content

Commit e4c81c3

Browse files
committed
Miscellaneous updates for PyPi
1 parent fe88055 commit e4c81c3

File tree

4 files changed

+23
-19
lines changed

4 files changed

+23
-19
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ doc/_build/
99
doc/_build/*
1010
TAGS
1111
dist
12-
MANIFEST
12+
MANIFEST
13+
.pypirc

MANIFEST.in

-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@
22
include *.c
33
include *.h
44
recursive-include examples *.py
5-
recursive-include doc

doc/index.rst

+1-13
Original file line numberDiff line numberDiff line change
@@ -34,20 +34,8 @@ installed:
3434
<http://www.nlnetlabs.nl/projects/unbound/>`_, version
3535
1.4.16 or later
3636
* `libidn <http://www.gnu.org/software/libidn/>`_ version 1
37-
* `libevent <http://libevent.org/>`_ version 2.0.21 stable
3837

39-
n.b.: libgetdns *must* be built with the libevent extension,
40-
as follows:
41-
::
42-
43-
./configure --with-libevent
44-
45-
To enable the use of edns cookies in the Python bindings,
46-
you must compile support for them into libgetdns, by
47-
including the --enable-draft-edns-cookies argument to
48-
configure.
49-
50-
This release has been tested against libgetdns 0.5.0.
38+
This release has been tested against libgetdns 0.9.0.
5139

5240
Building
5341
========

setup.py

+20-4
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,25 @@
6767

6868
setup(name='getdns',
6969
version='0.9.0',
70-
description='getdns Python bindings for getdns',
70+
description='Python bindings for getdns',
7171
long_description=long_description,
7272
license='BSD',
73-
url='http://www.getdnsapi.net',
74-
dependency_links=['https://github.com/getdnsapi/getdns/releases/tag/v0.9.0'],
75-
ext_modules = [ getdns_module ])
73+
author='Melinda Shore',
74+
author_email='[email protected]',
75+
url='http://getdns.readthedocs.org',
76+
dependency_links=['git+https://github.com/getdnsapi/getdns/tree/release/v0.9.0'],
77+
ext_modules = [ getdns_module ],
78+
classifiers = [
79+
'Development Status :: 4 - Beta',
80+
'Environment :: Console',
81+
'Intended Audience :: Developers',
82+
'Intended Audience :: Information Technology',
83+
'Intended Audience :: System Administrators',
84+
'Programming Language :: Python :: 2.7',
85+
'Programming Language :: Python :: 3.4',
86+
'Topic :: Internet :: Name Service (DNS)',
87+
'Topic :: Security',
88+
'Topic :: Software Development :: Libraries :: Python Modules'
89+
],
90+
keywords='DNS DNSSEC DANE',
91+
)

0 commit comments

Comments
 (0)