diff options
author | 2012-04-26 11:09:44 +0200 | |
---|---|---|
committer | 2012-04-26 11:09:44 +0200 | |
commit | a136c8a6496df445c7c00dfc97af17391b294245 (patch) | |
tree | 15f80b20a62e83ebd3e35891b471e8b5d096ea33 /setup.py | |
parent | add Makefile (diff) | |
download | python-github3-a136c8a6496df445c7c00dfc97af17391b294245.tar.xz python-github3-a136c8a6496df445c7c00dfc97af17391b294245.zip |
`setup.py` modified for finding requirements
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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', |