2012-10-16 13:45:02 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='isso',
|
2013-09-02 12:44:53 +00:00
|
|
|
version='0.1',
|
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/',
|
|
|
|
license='BSD revised',
|
|
|
|
description='lightweight Disqus alternative',
|
|
|
|
classifiers=[
|
|
|
|
"Development Status :: 3 - Alpha",
|
|
|
|
"Topic :: Internet",
|
|
|
|
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
|
|
|
|
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
|
|
|
|
"License :: OSI Approved :: BSD License",
|
|
|
|
"Programming Language :: Python :: 2.6",
|
|
|
|
"Programming Language :: Python :: 2.7"
|
|
|
|
],
|
2013-09-02 12:44:53 +00:00
|
|
|
install_requires=['Jinja2>=2.7', 'werkzeug>=0.9', 'itsdangerous', 'misaka'],
|
2012-10-16 13:45:02 +00:00
|
|
|
entry_points={
|
|
|
|
'console_scripts':
|
|
|
|
['isso = isso:main'],
|
|
|
|
},
|
|
|
|
)
|