Skip to content

Commit fe88055

Browse files
committed
Setting up for PyPi builds
1 parent 0435167 commit fe88055

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@ getdns.cpython-34m.so
88
doc/_build/
99
doc/_build/*
1010
TAGS
11+
dist
12+
MANIFEST

MANIFEST.in

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# file GENERATED by distutils, do NOT edit
2+
include *.c
3+
include *.h
4+
recursive-include examples *.py
5+
recursive-include doc

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -59,17 +59,17 @@
5959
include_dirs = [ '/usr/local/include', ],
6060
libraries = [ 'getdns' ],
6161
library_dirs = library_dirs,
62-
# library_dirs = [ '/usr/local/lib' ],
6362
sources = [ 'getdns.c', 'pygetdns_util.c', 'context.c',
6463
'context_util.c', 'result.c' ],
65-
extra_compile_args = CFLAGS,
64+
extra_compile_args = CFLAGS,
6665
runtime_library_dirs = library_dirs,
6766
)
6867

6968
setup(name='getdns',
70-
version='0.6.0',
69+
version='0.9.0',
7170
description='getdns Python bindings for getdns',
7271
long_description=long_description,
7372
license='BSD',
7473
url='http://www.getdnsapi.net',
74+
dependency_links=['https://github.com/getdnsapi/getdns/releases/tag/v0.9.0'],
7575
ext_modules = [ getdns_module ])

0 commit comments

Comments
 (0)