2012-10-16 13:45:02 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
|
2013-09-13 15:51:00 +00:00
|
|
|
import sys
|
|
|
|
|
2012-10-16 13:45:02 +00:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2016-02-06 14:34:45 +00:00
|
|
|
requires = ['itsdangerous', 'misaka>=1.0,<2.0', 'html5lib==0.9999999']
|
2013-09-13 15:51:00 +00:00
|
|
|
|
2013-10-09 14:28:54 +00:00
|
|
|
if (3, 0) <= sys.version_info < (3, 3):
|
|
|
|
raise SystemExit("Python 3.0, 3.1 and 3.2 are not supported")
|
|
|
|
|
2012-10-16 13:45:02 +00:00
|
|
|
setup(
|
|
|
|
name='isso',
|
2016-02-24 12:14:57 +00:00
|
|
|
version='0.10.4.dev0',
|
2012-12-16 16:59:17 +00:00
|
|
|
author='Martin Zimmermann',
|
2012-10-16 13:45:02 +00:00
|
|
|
author_email='info@posativ.org',
|
|
|
|
packages=find_packages(),
|
2012-12-16 16:59:17 +00:00
|
|
|
include_package_data=True,
|
2012-10-16 13:45:02 +00:00
|
|
|
zip_safe=True,
|
|
|
|
url='https://github.com/posativ/isso/',
|
2013-11-13 07:39:15 +00:00
|
|
|
license='MIT',
|
2012-10-16 13:45:02 +00:00
|
|
|
description='lightweight Disqus alternative',
|
|
|
|
classifiers=[
|
2013-12-17 12:42:58 +00:00
|
|
|
"Development Status :: 4 - Beta",
|
2012-10-16 13:45:02 +00:00
|
|
|
"Topic :: Internet",
|
|
|
|
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
|
|
|
|
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
|
2013-11-05 12:10:41 +00:00
|
|
|
"License :: OSI Approved :: MIT License",
|
2012-10-16 13:45:02 +00:00
|
|
|
"Programming Language :: Python :: 2.6",
|
2013-10-09 14:28:54 +00:00
|
|
|
"Programming Language :: Python :: 2.7",
|
2016-02-06 15:20:05 +00:00
|
|
|
"Programming Language :: Python :: 3.3",
|
|
|
|
"Programming Language :: Python :: 3.4"
|
2012-10-16 13:45:02 +00:00
|
|
|
],
|
2013-09-13 15:51:00 +00:00
|
|
|
install_requires=requires,
|
2016-02-06 15:20:05 +00:00
|
|
|
extras_require={
|
|
|
|
':python_version=="2.6"': ['argparse', 'ordereddict'],
|
2016-02-21 18:37:27 +00:00
|
|
|
':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']
|
2016-02-06 15:20:05 +00:00
|
|
|
},
|
2012-10-16 13:45:02 +00:00
|
|
|
entry_points={
|
|
|
|
'console_scripts':
|
|
|
|
['isso = isso:main'],
|
2014-03-28 11:28:52 +00:00
|
|
|
}
|
2012-10-16 13:45:02 +00:00
|
|
|
)
|