Browse Source

update setup.py, MANIFEST, LICENSE and gitignore

pull/9/merge
Simon 14 years ago
parent
commit
588645ff5f
  1. 2
      .gitignore
  2. 0
      LICENSE
  3. 2
      MANIFEST.in
  4. 15
      setup.py

2
.gitignore vendored

@ -1,5 +1,7 @@
*.egg-info
*~
*.pyc
*_flymake
MANIFEST
dist/
output/

2
MANIFEST.in

@ -1,2 +1,2 @@
include README LICENSE
recursive-include themes/default *
recursive-include themes *

15
setup.py

@ -1,7 +1,7 @@
#!/usr/bin/env python2
# -*- coding:utf-8 -*-
from distutils.core import setup
from setuptools import setup
import sys
requires = ['imaging', 'jinja2', 'docutils']
@ -12,20 +12,13 @@ setup(
name = 'sigal',
version = '0.1',
description = 'simple static gallery generator',
long_description =
'''
sigal is yet another python script to prepare a static gallery of images:
* resize images, create thumbnails with some options (squared thumbs, ...).
* generate html pages.
''',
long_description = open('README').read(),
url = 'https://github.com/saimn/sigal',
author = 'Simon C.',
author_email = 'contact@saimon.org',
license = 'GPLv3',
requires = requires,
# install_requires = requires,
include_package_data = True,
install_requires = requires,
packages = ['sigal'],
scripts = ['bin/sigal'],
)

Loading…
Cancel
Save