Skip to content

Commit

Permalink
add MANIFEST file to include additional files in source distribution …
Browse files Browse the repository at this point in the history
…(this only happens automatically for svn and cvs). only use ez_setup if necessary. bump version
  • Loading branch information
Mike Dirolf committed Feb 6, 2009
1 parent c220a60 commit c9b7f2e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
5 changes: 5 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,5 @@
include README.rst
include ez_setup.py
include epydoc-config
recursive-include examples *.py
recursive-include tools *.py README.rst validate
11 changes: 7 additions & 4 deletions setup.py
@@ -1,8 +1,11 @@
#!/usr/bin/env python

from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
try:
from setuptools import setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
from distutils.core import Extension

f = open("README.rst")
Expand All @@ -15,7 +18,7 @@

setup(
name="pymongo",
version="0.5pre",
version="0.5.1pre",
description="Driver for the Mongo database <http://www.mongodb.org>",
long_description=readme_content,
author="10gen",
Expand Down

0 comments on commit c9b7f2e

Please sign in to comment.