mirror of https://github.com/saimn/sigal.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
608 B
24 lines
608 B
#!/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'], |
|
)
|
|
|