From 348e9d6c1987280fb8d3e0f725f823cbdd0d5e18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Fri, 6 May 2016 10:30:52 +0200 Subject: [PATCH] Include README.md, LICENSE.md and CHANGELOG.md in wheel. --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 1438d92..b813110 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +import glob from setuptools import setup long_description = """ @@ -12,6 +13,7 @@ setup( author_email='francesco@blender.org', packages=['pillarsdk'], scripts=[], + data_files=[('pillarsdk', glob.glob('*.md'))], url='https://github.com/armadillica/Pillar-Python-SDK', license='BSD License', description='The Pillar REST SDK provides Python APIs to communicate to the Pillar webservices.',