mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
setup.py version should inherit from __init.py__
This commit is contained in:
parent
09c07e2950
commit
7e516cb7b0
1 changed files with 3 additions and 1 deletions
4
setup.py
4
setup.py
|
|
@ -1,5 +1,6 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
from pelican import __version__
|
||||||
|
|
||||||
requires = ['feedgenerator >= 1.6', 'jinja2 >= 2.7', 'pygments', 'docutils',
|
requires = ['feedgenerator >= 1.6', 'jinja2 >= 2.7', 'pygments', 'docutils',
|
||||||
'pytz >= 0a', 'blinker', 'unidecode', 'six >= 1.4',
|
'pytz >= 0a', 'blinker', 'unidecode', 'six >= 1.4',
|
||||||
|
|
@ -21,7 +22,7 @@ CHANGELOG = open('docs/changelog.rst').read()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="pelican",
|
name="pelican",
|
||||||
version="3.3",
|
version=__version__,
|
||||||
url='http://getpelican.com/',
|
url='http://getpelican.com/',
|
||||||
author='Alexis Metaireau',
|
author='Alexis Metaireau',
|
||||||
author_email='authors@getpelican.com',
|
author_email='authors@getpelican.com',
|
||||||
|
|
@ -41,6 +42,7 @@ setup(
|
||||||
'Programming Language :: Python :: 2.7',
|
'Programming Language :: Python :: 2.7',
|
||||||
'Programming Language :: Python :: 3',
|
'Programming Language :: Python :: 3',
|
||||||
'Programming Language :: Python :: 3.3',
|
'Programming Language :: Python :: 3.3',
|
||||||
|
'Programming Language :: Python :: 3.4',
|
||||||
'Topic :: Internet :: WWW/HTTP',
|
'Topic :: Internet :: WWW/HTTP',
|
||||||
'Topic :: Software Development :: Libraries :: Python Modules',
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
||||||
],
|
],
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue