2012-08-16 18:36:30 +02:00
|
|
|
from distutils.core import setup
|
|
|
|
from distutils.extension import Extension
|
|
|
|
|
|
|
|
setup(
|
2012-08-22 20:37:26 +02:00
|
|
|
name = 'python-spdylay',
|
2012-08-24 16:35:58 +02:00
|
|
|
# Also update __version__ in spdylay.pyx
|
2012-08-22 20:37:26 +02:00
|
|
|
version = '0.1.0',
|
|
|
|
description = 'SPDY library',
|
|
|
|
author = 'Tatsuhiro Tsujikawa',
|
|
|
|
author_email = 'tatsuhiro.t@gmail.com',
|
|
|
|
url = 'http://spdylay.sourceforge.net/',
|
|
|
|
keywords = [],
|
2012-08-16 18:36:30 +02:00
|
|
|
ext_modules = [Extension("spdylay",
|
|
|
|
["spdylay.c"],
|
2012-08-22 20:37:26 +02:00
|
|
|
libraries=['spdylay'])],
|
|
|
|
classifiers = [
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules'
|
|
|
|
]
|
2012-08-16 18:36:30 +02:00
|
|
|
)
|