Files
sigal/setup.py

40 lines
1.3 KiB
Python
Raw Normal View History

2011-05-13 17:39:18 +02:00
#!/usr/bin/env python2
# -*- coding:utf-8 -*-
from setuptools import setup
2011-05-13 17:39:18 +02:00
import sys
2012-09-15 00:28:50 +02:00
requires = ['PIL', 'jinja2', 'Markdown', 'clint']
2011-05-13 17:39:18 +02:00
if sys.version_info < (2,7):
requires.append('argparse')
2012-05-13 23:28:19 +02:00
entry_points = {
'console_scripts':
['sigal = sigal:main']
}
2011-05-13 17:39:18 +02:00
setup(
name = 'sigal',
version = '0.1-dev',
2011-05-13 17:39:18 +02:00
description = 'simple static gallery generator',
2012-05-13 22:37:28 +02:00
long_description = open('README.rst').read(),
2011-05-13 17:39:18 +02:00
url = 'https://github.com/saimn/sigal',
author = 'Simon C.',
author_email = 'contact@saimon.org',
2012-08-18 22:10:37 +02:00
license = 'MIT',
include_package_data = True,
install_requires = requires,
2012-05-13 23:28:19 +02:00
entry_points = entry_points,
2011-05-13 17:39:18 +02:00
packages = ['sigal'],
2012-05-23 00:11:48 +02:00
classifiers = ['Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'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',
],
2011-05-13 17:39:18 +02:00
)