From 2665ff69ef2d9b05bc1e78ffb80ee038b34d32b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Tue, 24 Feb 2015 14:15:51 +0100 Subject: [PATCH] Make sure the readme is in the package --- client/MANIFEST.in | 2 ++ client/setup.py | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 client/MANIFEST.in 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']}, )