From 1f25874c7f5b2b6484549dbfdf7247b44817222d Mon Sep 17 00:00:00 2001 From: Cory Dolphin Date: Tue, 3 Sep 2013 15:47:15 -0500 Subject: [PATCH 1/2] Updates manifest to include headers, and adds include dirs to setup --- .travis.yml | 3 +-- MANIFEST => MANIFEST.in | 0 setup.py | 3 ++- 3 files changed, 3 insertions(+), 3 deletions(-) rename MANIFEST => MANIFEST.in (100%) diff --git a/.travis.yml b/.travis.yml index b503279..96f5bfa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,5 +8,4 @@ install: - python setup.py install script: - python test/test.py - - pip install python-bcrypt - + - pip install python-bcrypt --force-reinstall diff --git a/MANIFEST b/MANIFEST.in similarity index 100% rename from MANIFEST rename to MANIFEST.in diff --git a/setup.py b/setup.py index 023e821..b6a0187 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,8 @@ if __name__ == '__main__': bcrypt = Extension('bcrypt._bcrypt', - sources = ['bcrypt/bcrypt_python.c', 'bcrypt/blowfish.c','bcrypt/bcrypt.c']) + sources = ['bcrypt/bcrypt_python.c', 'bcrypt/blowfish.c','bcrypt/bcrypt.c'], + include_dirs = ['bcrypt']) setup(name = "python-bcrypt", version = VERSION, author = "Damien Miller, maintained by @wcdolphin", From 3d5fcd0e3d6c3d813a63afd191b97a774a0dc216 Mon Sep 17 00:00:00 2001 From: wcdolphin Date: Tue, 3 Sep 2013 15:58:56 -0500 Subject: [PATCH 2/2] quiets uinstaller --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 96f5bfa..89c86f0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,4 +8,5 @@ install: - python setup.py install script: - python test/test.py + - pip -q uninstall python-bcrypt - pip install python-bcrypt --force-reinstall