2011-05-13 17:39:18 +02:00
|
|
|
# -*- coding:utf-8 -*-
|
|
|
|
|
|
2012-12-10 00:18:07 +01:00
|
|
|
from setuptools import setup, find_packages
|
2011-05-13 17:39:18 +02:00
|
|
|
|
2013-02-21 00:36:06 +01:00
|
|
|
requires = ['argh', 'clint', 'jinja2', 'Markdown']
|
2011-05-13 17:39:18 +02:00
|
|
|
|
2013-02-15 18:12:23 +01:00
|
|
|
try:
|
|
|
|
|
from PIL import Image, ImageOps # NOQA
|
|
|
|
|
except ImportError:
|
|
|
|
|
requires += ['Pillow']
|
|
|
|
|
|
2012-05-13 23:28:19 +02:00
|
|
|
entry_points = {
|
2012-11-09 12:21:18 +01:00
|
|
|
'console_scripts': ['sigal = sigal:main']
|
|
|
|
|
}
|
2012-05-13 23:28:19 +02:00
|
|
|
|
2012-12-10 00:18:07 +01:00
|
|
|
with open('README.rst') as f:
|
|
|
|
|
README = f.read()
|
|
|
|
|
|
2011-05-13 17:39:18 +02:00
|
|
|
setup(
|
2012-11-09 12:21:18 +01:00
|
|
|
name='sigal',
|
2013-03-11 22:40:55 +01:00
|
|
|
version='0.3.1',
|
2012-11-09 12:21:18 +01:00
|
|
|
url='https://github.com/saimn/sigal',
|
|
|
|
|
license='MIT',
|
|
|
|
|
author='Simon Conseil',
|
|
|
|
|
author_email='contact@saimon.org',
|
|
|
|
|
description='Simple static gallery generator',
|
2012-12-10 00:18:07 +01:00
|
|
|
long_description=README,
|
2012-11-09 12:21:18 +01:00
|
|
|
packages=find_packages(),
|
|
|
|
|
zip_safe=False,
|
|
|
|
|
include_package_data=True,
|
|
|
|
|
platforms='any',
|
|
|
|
|
install_requires=requires,
|
2012-12-10 00:18:07 +01:00
|
|
|
test_requires=['nose'],
|
|
|
|
|
test_suite='nose.collector',
|
2012-11-09 12:21:18 +01:00
|
|
|
entry_points=entry_points,
|
|
|
|
|
classifiers=[
|
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
|
'Environment :: Console',
|
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
|
'Programming Language :: Python :: 2.6',
|
|
|
|
|
'Programming Language :: Python :: 2.7',
|
|
|
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
|
|
|
'Topic :: Multimedia :: Graphics :: Viewers',
|
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
|
|
|
],
|
|
|
|
|
)
|