Skip to content

Commit

Permalink
Fixed setup.py to support requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitaly Babiy committed Jun 7, 2011
1 parent b59280d commit 8a08f54
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
include *.rst
include requirements.txt
recursive-include scripts *
File renamed without changes.
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
except ImportError:
from distutils.core import setup

requirements = [r for r in map(str.strip, open('requirements.txt').readlines())]


setup(
name='chai',
version='0.1.8',
Expand All @@ -14,6 +17,7 @@
description="Easy to use mocking/stub framework.",
long_description=open('README.rst').read(),
keywords=['python', 'test', 'mock'],
install_requires=requirements,
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
Expand Down

0 comments on commit 8a08f54

Please sign in to comment.