diff --git a/client/MANIFEST.in b/client/MANIFEST.in new file mode 100644 index 0000000..04f196a --- /dev/null +++ b/client/MANIFEST.in @@ -0,0 +1,2 @@ +include README.md +include LICENSE diff --git a/client/setup.py b/client/setup.py index 48eb112..a498a13 100644 --- a/client/setup.py +++ b/client/setup.py @@ -4,11 +4,11 @@ from setuptools import setup setup( name='pypssl', - version='1.0', + version='1.0.1', author='Raphaël Vinot', author_email='raphael.vinot@circl.lu', maintainer='Raphaël Vinot', - url='https://github.com/CIRCL/PyPSSL', + url='https://github.com/adulau/crl-monitor/tree/master/client', description='Python API for PSSL.', long_description=open('README.md').read(), packages=['pypssl'], @@ -23,4 +23,5 @@ setup( 'Topic :: Internet', ], install_requires=['requests'], + package_data={'': ['*.md', '*.rst', 'LICENSE']}, )