1
0
mirror of https://github.com/moparisthebest/spdylay synced 2024-08-13 17:03:54 -04:00
spdylay/python/setup.py

26 lines
868 B
Python
Raw Normal View History

from distutils.core import setup
from distutils.extension import Extension
setup(
2012-08-22 14:37:26 -04:00
name = 'python-spdylay',
2012-08-24 10:35:58 -04:00
# Also update __version__ in spdylay.pyx
2012-08-22 14:37:26 -04:00
version = '0.1.0',
description = 'SPDY library',
author = 'Tatsuhiro Tsujikawa',
author_email = 'tatsuhiro.t@gmail.com',
url = 'http://spdylay.sourceforge.net/',
keywords = [],
ext_modules = [Extension("spdylay",
["spdylay.c"],
2012-08-22 14:37:26 -04: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'
]
)