mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
PEP8-ify
This commit is contained in:
parent
cadcfa43c3
commit
10f75524fc
1 changed files with 24 additions and 21 deletions
11
setup.py
11
setup.py
|
|
@ -1,10 +1,11 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
requires = ['feedgenerator', 'jinja2 >= 2.4', 'pygments', 'docutils', 'pytz', 'blinker', 'unidecode']
|
requires = ['feedgenerator', 'jinja2 >= 2.4', 'pygments', 'docutils', 'pytz',
|
||||||
|
'blinker', 'unidecode']
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import argparse
|
import argparse # NOQA
|
||||||
except ImportError:
|
except ImportError:
|
||||||
requires.append('argparse')
|
requires.append('argparse')
|
||||||
|
|
||||||
|
|
@ -23,13 +24,15 @@ setup(
|
||||||
url='http://getpelican.com/',
|
url='http://getpelican.com/',
|
||||||
author='Alexis Metaireau',
|
author='Alexis Metaireau',
|
||||||
author_email='alexis@notmyidea.org',
|
author_email='alexis@notmyidea.org',
|
||||||
description = "A tool to generate a static blog from reStructuredText or Markdown input files.",
|
description="A tool to generate a static blog from reStructuredText or "\
|
||||||
|
"Markdown input files.",
|
||||||
long_description=open('README.rst').read(),
|
long_description=open('README.rst').read(),
|
||||||
packages=['pelican', 'pelican.tools', 'pelican.plugins'],
|
packages=['pelican', 'pelican.tools', 'pelican.plugins'],
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
install_requires=requires,
|
install_requires=requires,
|
||||||
entry_points=entry_points,
|
entry_points=entry_points,
|
||||||
classifiers = ['Development Status :: 5 - Production/Stable',
|
classifiers=[
|
||||||
|
'Development Status :: 5 - Production/Stable',
|
||||||
'Environment :: Console',
|
'Environment :: Console',
|
||||||
'License :: OSI Approved :: GNU Affero General Public License v3',
|
'License :: OSI Approved :: GNU Affero General Public License v3',
|
||||||
'Operating System :: OS Independent',
|
'Operating System :: OS Independent',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue