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