restore back to hardcoded version in setup.py due to import hell

This commit is contained in:
Alexis Metaireau 2012-03-16 21:12:48 +01:00
commit 8b846b9fe2

View file

@ -1,8 +1,6 @@
#!/usr/bin/env python #!/usr/bin/env python
from setuptools import setup from setuptools import setup
from pelican import __version__
requires = ['feedgenerator', 'jinja2', 'pygments', 'docutils', 'pytz'] requires = ['feedgenerator', 'jinja2', 'pygments', 'docutils', 'pytz']
try: try:
@ -21,7 +19,7 @@ entry_points = {
setup( setup(
name = "pelican", name = "pelican",
version = __version__, version = "3.0",
url = 'http://pelican.notmyidea.org/', url = 'http://pelican.notmyidea.org/',
author = 'Alexis Metaireau', author = 'Alexis Metaireau',
author_email = 'alexis@notmyidea.org', author_email = 'alexis@notmyidea.org',