CI unit tests should now use TOX and test both libssl 0.9.8 and libssl 1.0.0

This commit is contained in:
Michael Greene
2014-05-08 17:36:55 -07:00
parent 212e346e33
commit 5dbd94ad0e
7 changed files with 75 additions and 39 deletions

View File

@@ -2,7 +2,10 @@
from distutils.core import setup
from pip.req import parse_requirements
import pgpy._author
# this is dirty
import sys
sys.path.append('pgpy')
import _author
# long_description is the contents of README.rst
with open('README.rst') as readme:
@@ -15,12 +18,12 @@ test_reqs = parse_requirements('requirements-test.txt')
##TODO: fill in blank fields
setup(
name = 'PGPy',
version = pgpy._author.__version__,
version = _author.__version__,
description = 'Pretty Good Privacy for Python',
long_description = long_desc,
author = pgpy._author.__author__,
author = _author.__author__,
author_email = "mgreene@securityinnovation.com",
license = pgpy._author.__license__,
license = _author.__license__,
url = "https://github.com/Commod0re/PGPy",
download_url = "https://github.com/Commod0re/PGPy/archive/0.1.0.tar.gz",