aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorAlejandro Gómez <alejandroogomez@gmail.com>2012-04-26 11:09:44 +0200
committerAlejandro Gómez <alejandroogomez@gmail.com>2012-04-26 11:09:44 +0200
commita136c8a6496df445c7c00dfc97af17391b294245 (patch)
tree15f80b20a62e83ebd3e35891b471e8b5d096ea33 /setup.py
parentadd Makefile (diff)
downloadpython-github3-a136c8a6496df445c7c00dfc97af17391b294245.tar.xz
python-github3-a136c8a6496df445c7c00dfc97af17391b294245.zip
`setup.py` modified for finding requirements
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 9052973..ad082b9 100644
--- a/setup.py
+++ b/setup.py
@@ -14,7 +14,7 @@ setup(
long_description=open('README.rst').read(),
license='ISC',
packages=find_packages(exclude=['*tests*']),
- install_requires=map(str.strip, open('requirements.txt')),
+ install_requires=map(str.strip, open('requirements/base.txt')),
include_package_data=True,
classifiers=(
'Programming Language :: Python',