Skip to content

Commit

Permalink
misc: bump version 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
everpcpc committed Aug 21, 2020
1 parent a90dea5 commit c9ac767
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
import sys
from glob import glob
from setuptools import setup, Extension

version = '0.3.2'
version = '0.3.3'


def readme():
with open('README.rst') as f:
return f.read()


include_dirs = ["include"]
sources = glob("*.pyx") + glob("src/*.c")
libraries = ["dl"]

setup(
name="greenify",
version=version,
description = "Make C module compatible with gevent at runtime.",
description="Make C module compatible with gevent at runtime.",
long_description=readme(),
platforms=['Linux'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Cython',
'Programming Language :: C',
'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux', 'Programming Language :: Cython', 'Programming Language :: C',
'Topic :: Software Development :: Libraries'
],
author="Zhongbo Tian",
author_email="tianzhongbo@douban.com",
url="https://github.com/douban/greenify",
download_url = 'https://github.com/douban/greenify/archive/%s.tar.gz' % version,
download_url='https://github.com/douban/greenify/archive/%s.tar.gz' % version,
setup_requires=['Cython >= 0.18'],
install_requires=['gevent'],
ext_modules=[
Extension('greenify', sources, include_dirs=include_dirs,
libraries=libraries)
]
ext_modules=[Extension(
'greenify',
sources,
include_dirs=include_dirs,
libraries=libraries,
)],
)

0 comments on commit c9ac767

Please sign in to comment.