You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
isso/setup.py

46 lines
1.4 KiB

12 years ago
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
import sys
12 years ago
from setuptools import setup, find_packages
requires = ['itsdangerous', 'misaka>=1.0,<2.0', 'html5lib==0.9999999']
if (3, 0) <= sys.version_info < (3, 3):
raise SystemExit("Python 3.0, 3.1 and 3.2 are not supported")
12 years ago
setup(
name='isso',
version='0.10.4.dev0',
author='Martin Zimmermann',
12 years ago
author_email='info@posativ.org',
packages=find_packages(),
include_package_data=True,
12 years ago
zip_safe=True,
url='https://github.com/posativ/isso/',
license='MIT',
12 years ago
description='lightweight Disqus alternative',
classifiers=[
"Development Status :: 4 - Beta",
12 years ago
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"License :: OSI Approved :: MIT License",
12 years ago
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4"
12 years ago
],
install_requires=requires,
extras_require={
':python_version=="2.6"': ['argparse', 'ordereddict'],
':python_version=="2.6" or python_version=="2.7"': ['ipaddr>=2.1', 'configparser', 'werkzeug>=0.8'],
':python_version!="2.6" and python_version!="2.7"': ['werkzeug>=0.9']
},
12 years ago
entry_points={
'console_scripts':
['isso = isso:main'],
}
12 years ago
)