Merge pull request #2 from Rafiot/master

Make sure the readme is in the package
This commit is contained in:
Alexandre Dulaunoy 2015-02-24 14:18:53 +01:00
commit bd59ac25ab
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']},
)