25 lines
608 B
Python
25 lines
608 B
Python
#!/usr/bin/env python2
|
|
# -*- coding:utf-8 -*-
|
|
|
|
from setuptools import setup
|
|
import sys
|
|
|
|
requires = ['imaging', 'jinja2', 'docutils']
|
|
if sys.version_info < (2,7):
|
|
requires.append('argparse')
|
|
|
|
setup(
|
|
name = 'sigal',
|
|
version = '0.1',
|
|
description = 'simple static gallery generator',
|
|
long_description = open('README.rst').read(),
|
|
url = 'https://github.com/saimn/sigal',
|
|
author = 'Simon C.',
|
|
author_email = 'contact@saimon.org',
|
|
license = 'GPLv3',
|
|
include_package_data = True,
|
|
install_requires = requires,
|
|
packages = ['sigal'],
|
|
scripts = ['bin/sigal'],
|
|
)
|