2012-10-16 15:45:02 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
|
2013-09-13 17:51:00 +02:00
|
|
|
import sys
|
|
|
|
|
2012-10-16 15:45:02 +02:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2015-10-28 19:39:57 -07:00
|
|
|
requires = ['itsdangerous', 'Jinja2', 'misaka>=2.0,<3.0', 'html5lib<0.9999999',
|
|
|
|
'werkzeug>=0.9']
|
2013-09-13 17:51:00 +02:00
|
|
|
|
2018-01-24 20:26:44 +01:00
|
|
|
if sys.version_info < (2, 7):
|
|
|
|
raise SystemExit("Python 2 versions < 2.7 are not supported.")
|
|
|
|
elif (3, 0) <= sys.version_info < (3, 4):
|
|
|
|
raise SystemExit("Python 3 versions < 3.4 are not supported.")
|
2013-10-09 16:28:54 +02:00
|
|
|
|
2012-10-16 15:45:02 +02:00
|
|
|
setup(
|
|
|
|
name='isso',
|
2016-09-22 09:16:22 +02:00
|
|
|
version='0.10.7.dev0',
|
2012-12-16 17:59:17 +01:00
|
|
|
author='Martin Zimmermann',
|
2012-10-16 15:45:02 +02:00
|
|
|
author_email='info@posativ.org',
|
|
|
|
packages=find_packages(),
|
2012-12-16 17:59:17 +01:00
|
|
|
include_package_data=True,
|
2016-04-12 20:24:58 +02:00
|
|
|
zip_safe=False,
|
2012-10-16 15:45:02 +02:00
|
|
|
url='https://github.com/posativ/isso/',
|
2013-11-13 08:39:15 +01:00
|
|
|
license='MIT',
|
2012-10-16 15:45:02 +02:00
|
|
|
description='lightweight Disqus alternative',
|
|
|
|
classifiers=[
|
2013-12-17 13:42:58 +01:00
|
|
|
"Development Status :: 4 - Beta",
|
2012-10-16 15:45:02 +02:00
|
|
|
"Topic :: Internet",
|
|
|
|
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
|
|
|
|
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
|
2013-11-05 13:10:41 +01:00
|
|
|
"License :: OSI Approved :: MIT License",
|
2013-10-09 16:28:54 +02:00
|
|
|
"Programming Language :: Python :: 2.7",
|
2018-01-24 20:26:44 +01:00
|
|
|
"Programming Language :: Python :: 3.4",
|
|
|
|
"Programming Language :: Python :: 3.5",
|
|
|
|
"Programming Language :: Python :: 3.6"
|
2012-10-16 15:45:02 +02:00
|
|
|
],
|
2013-09-13 17:51:00 +02:00
|
|
|
install_requires=requires,
|
2016-02-06 16:20:05 +01:00
|
|
|
extras_require={
|
2018-01-24 20:26:44 +01:00
|
|
|
':python_version=="2.7"': ['ipaddr>=2.1', 'configparser']
|
2016-02-06 16:20:05 +01:00
|
|
|
},
|
2015-10-28 20:00:04 -07:00
|
|
|
setup_requires=["cffi>=1.3.0"],
|
2012-10-16 15:45:02 +02:00
|
|
|
entry_points={
|
|
|
|
'console_scripts':
|
|
|
|
['isso = isso:main'],
|
2014-03-28 12:28:52 +01:00
|
|
|
}
|
2012-10-16 15:45:02 +02:00
|
|
|
)
|