Created
March 10, 2015 10:04
-
-
Save utek/c227d3f68256972fd3cd to your computer and use it in GitHub Desktop.
Modifing requires in develop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# coding=utf-8 | |
from setuptools import setup, find_packages | |
from setuptools.command.develop import develop | |
requires = [ | |
'requests' | |
] | |
class StupidDevel(develop): | |
def run(self): | |
requires.append('ipython') | |
develop.run(self) | |
setup(name='lalala', | |
version='0.0.1', | |
description='That\'s stupid', | |
long_description='DESCRIPTION', | |
classifiers=[ | |
], | |
author='Łukasz Bołdys', | |
author_email='[email protected]', | |
url='', | |
keywords='', | |
license='LICENSE', | |
packages=find_packages(), | |
include_package_data=True, | |
zip_safe=False, | |
test_suite='lalala', | |
install_requires=requires, | |
cmdclass={'develop': StupidDevel} | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment