update setup.py, MANIFEST, LICENSE and gitignore
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,5 +1,7 @@
|
||||
*.egg-info
|
||||
*~
|
||||
*.pyc
|
||||
*_flymake
|
||||
MANIFEST
|
||||
dist/
|
||||
output/
|
||||
@@ -1,2 +1,2 @@
|
||||
include README LICENSE
|
||||
recursive-include themes/default *
|
||||
recursive-include themes *
|
||||
|
||||
15
setup.py
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'],
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user