Make sure the readme is in the package

This commit is contained in:
Raphaël Vinot 2015-02-24 14:15:51 +01:00
parent 4d87f4fcb5
commit 2665ff69ef
2 changed files with 5 additions and 2 deletions

2
client/MANIFEST.in Normal file
View file

@ -0,0 +1,2 @@
include README.md
include LICENSE

View file

@ -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']},
)