importing sigal in setup has a drawback: If the package requires a dependency

before the dependency is installed the setup.py script will fail. Back to manual
version number.
This commit is contained in:
Simon
2012-05-13 23:54:06 +02:00
parent 36e23beef2
commit e7336a4784

View File

@@ -2,7 +2,6 @@
# -*- coding:utf-8 -*-
from setuptools import setup
import sigal
import sys
requires = ['PIL', 'jinja2', 'docutils']
@@ -16,7 +15,7 @@ entry_points = {
setup(
name = 'sigal',
version = sigal.__version__,
version = '0.1-dev',
description = 'simple static gallery generator',
long_description = open('README.rst').read(),
url = 'https://github.com/saimn/sigal',