mirror of https://github.com/saimn/sigal.git
2 changed files with 35 additions and 29 deletions
@ -1,2 +1,7 @@
|
||||
include README.rst LICENSE |
||||
recursive-include docs * |
||||
recursive-exclude docs *.pyc |
||||
recursive-exclude docs *.pyo |
||||
prune docs/_build |
||||
prune docs/_themes/.git |
||||
recursive-include sigal/themes * |
||||
|
||||
@ -1,39 +1,40 @@
|
||||
#!/usr/bin/env python2 |
||||
# -*- coding:utf-8 -*- |
||||
|
||||
from setuptools import setup |
||||
from setuptools import setup, find_packages |
||||
import sys |
||||
|
||||
requires = ['PIL', 'jinja2', 'Markdown', 'clint'] |
||||
if sys.version_info < (2,7): |
||||
if sys.version_info < (2, 7): |
||||
requires.append('argparse') |
||||
|
||||
entry_points = { |
||||
'console_scripts': |
||||
['sigal = sigal:main'] |
||||
} |
||||
'console_scripts': ['sigal = sigal:main'] |
||||
} |
||||
|
||||
setup( |
||||
name = 'sigal', |
||||
version = '0.1-dev', |
||||
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 = 'MIT', |
||||
include_package_data = True, |
||||
install_requires = requires, |
||||
entry_points = entry_points, |
||||
packages = ['sigal'], |
||||
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', |
||||
], |
||||
) |
||||
name='sigal', |
||||
version='0.1-dev', |
||||
url='https://github.com/saimn/sigal', |
||||
license='MIT', |
||||
author='Simon Conseil', |
||||
author_email='contact@saimon.org', |
||||
description='Simple static gallery generator', |
||||
long_description=open('README.rst').read(), |
||||
packages=find_packages(), |
||||
zip_safe=False, |
||||
include_package_data=True, |
||||
platforms='any', |
||||
install_requires=requires, |
||||
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', |
||||
], |
||||
) |
||||
|
||||
Loading…
Reference in new issue