Skip to content

Commit

Permalink
Told setuptools to ignore version control when composing the list of
Browse files Browse the repository at this point in the history
files to include in our source archive.


svn/trunk@8270
  • Loading branch information
burner-craig committed Jul 15, 2009
1 parent c3270d7 commit 1ecbd2e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions setup-eggs.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@
from setuptools import setup
import nltk

#
# Prevent setuptools from trying to add extra files to the source code
# manifest by scanning the version control system for its contents.
#
from setuptools.command import sdist
del sdist.finders[:]

setup(
#############################################
## Distribution Metadata
Expand Down

0 comments on commit 1ecbd2e

Please sign in to comment.