diff --git a/MANIFEST.in b/MANIFEST.in index d37975d..9607566 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,4 +2,3 @@ include tests/*.py recursive-include data *.crt recursive-include spec *.asn88 -include README.rst diff --git a/README.rst b/README.txt similarity index 100% rename from README.rst rename to README.txt diff --git a/rfc3161/__init__.py b/rfc3161/__init__.py index 2367567..18ec20e 100644 --- a/rfc3161/__init__.py +++ b/rfc3161/__init__.py @@ -2,4 +2,4 @@ from types import * from constants import * from api import * -VERSION = '0.1.7' +VERSION = '0.1.8' diff --git a/setup.py b/setup.py index 2a429e9..c720d24 100755 --- a/setup.py +++ b/setup.py @@ -23,8 +23,9 @@ class TestCommand(Command): t.run(tests) setup(name='rfc3161', - version='0.1.7', + version='0.1.8', license='MIT', + url='https://dev.entrouvert.org/projects/python-rfc3161', description='Python implementation of the RFC3161 specification, using pyasn1', author='Benjamin Dauvergne', author_email='bdauvergne@entrouvert.com',