From dfe6b1953b693f00ceb423537297d4d41066b1a4 Mon Sep 17 00:00:00 2001 From: ravi Date: Mon, 23 May 2016 12:35:30 +0530 Subject: [PATCH] fixed readme in manifest --- .gitignore | 1 - MANIFEST.in | 3 ++- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 65cd212..02d0b6e 100644 --- a/.gitignore +++ b/.gitignore @@ -27,7 +27,6 @@ var/ # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest *.spec # Installer logs diff --git a/MANIFEST.in b/MANIFEST.in index 9561fb1..3e677d0 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1,2 @@ -include README.rst +include README.md +include LICENSE.txt diff --git a/setup.py b/setup.py index 3210953..916fd89 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ import os from setuptools import setup, find_packages -VERSION = '0.2.1' +VERSION = '0.2.2' with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme: LONG_DESCRIPTION = readme.read()