Merge pull request #2 from dcrosta/include-README

add MANIFEST.in to force README.md to be packaged in `setup.py sdist`
This commit is contained in:
Dave Dash
2013-04-25 09:16:44 -07:00
3 changed files with 9 additions and 2 deletions

5
MANIFEST.in Normal file
View File

@@ -0,0 +1,5 @@
include README.* setup.py setup.cfg
recursive-include pymemcache *.py
global-exclude *.pyc
global-exclude *.pyo

View File

@@ -1 +1 @@
__version__ = '1.0'
__version__ = '1.0.1'

View File

@@ -2,9 +2,11 @@
from setuptools import setup, find_packages
from pymemcache import __version__
setup(
name = 'pymemcache',
version = '1.0',
version = __version__,
author = 'Charles Gordon',
author_email = 'charles@pinterest.com',
packages = find_packages(),