mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Merged from upstream/master
This commit is contained in:
commit
d73e393206
262 changed files with 5498 additions and 4504 deletions
21
setup.py
21
setup.py
|
|
@ -1,13 +1,8 @@
|
|||
#!/usr/bin/env python
|
||||
from setuptools import setup
|
||||
|
||||
requires = ['feedgenerator', 'jinja2 >= 2.6', 'pygments', 'docutils', 'pytz',
|
||||
'blinker', 'unidecode']
|
||||
|
||||
try:
|
||||
import argparse # NOQA
|
||||
except ImportError:
|
||||
requires.append('argparse')
|
||||
requires = ['feedgenerator >= 1.6', 'jinja2 >= 2.6', 'pygments', 'docutils',
|
||||
'pytz', 'blinker', 'unidecode', 'six']
|
||||
|
||||
entry_points = {
|
||||
'console_scripts': [
|
||||
|
|
@ -16,7 +11,7 @@ entry_points = {
|
|||
'pelican-quickstart = pelican.tools.pelican_quickstart:main',
|
||||
'pelican-themes = pelican.tools.pelican_themes:main',
|
||||
'pelican-article = pelican.tools.pelican_article:main'
|
||||
]
|
||||
]
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -26,14 +21,14 @@ CHANGELOG = open('docs/changelog.rst').read()
|
|||
|
||||
setup(
|
||||
name="pelican",
|
||||
version="3.2",
|
||||
version="3.3",
|
||||
url='http://getpelican.com/',
|
||||
author='Alexis Metaireau',
|
||||
author_email='authors@getpelican.com',
|
||||
description="A tool to generate a static blog from reStructuredText or "
|
||||
"Markdown input files.",
|
||||
long_description=README + '\n' + CHANGELOG,
|
||||
packages=['pelican', 'pelican.tools', 'pelican.plugins'],
|
||||
packages=['pelican', 'pelican.tools'],
|
||||
include_package_data=True,
|
||||
install_requires=requires,
|
||||
entry_points=entry_points,
|
||||
|
|
@ -42,10 +37,12 @@ setup(
|
|||
'Environment :: Console',
|
||||
'License :: OSI Approved :: GNU Affero General Public License v3',
|
||||
'Operating System :: OS Independent',
|
||||
'Programming Language :: Python :: 2.6',
|
||||
'Programming Language :: Python :: 2',
|
||||
'Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.3',
|
||||
'Topic :: Internet :: WWW/HTTP',
|
||||
'Topic :: Software Development :: Libraries :: Python Modules',
|
||||
],
|
||||
test_suite='tests',
|
||||
test_suite='pelican.tests',
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue