Skip to content

Instantly share code, notes, and snippets.

@honzajavorek
Created January 23, 2013 20:07
Show Gist options
  • Save honzajavorek/4612408 to your computer and use it in GitHub Desktop.
Save honzajavorek/4612408 to your computer and use it in GitHub Desktop.
HOWTO: gevent==1.0dev as a regular dependency in setup.py
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
...,
install_requires=[
...
'cython==0.17.4', # just to be able to compile gevent from tarball
'gevent==1.0dev',
...
],
dependency_links=[
('https://github.com/sitesupport/gevent/tarball/1.0rc2#'
'egg=gevent-1.0dev'),
],
...
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment