2011-05-06 16:29:15 +06:00
|
|
|
#!/usr/bin/env python
|
2010-10-13 22:05:13 +01:00
|
|
|
from setuptools import setup
|
2010-12-19 01:30:08 +00:00
|
|
|
|
2013-08-03 16:17:26 -07:00
|
|
|
requires = ['feedgenerator >= 1.6', 'jinja2 >= 2.7', 'pygments', 'docutils',
|
2014-06-10 08:28:10 +09:00
|
|
|
'pytz >= 0a', 'blinker', 'unidecode', 'six >= 1.4',
|
|
|
|
|
'python-dateutil']
|
2012-03-07 10:14:47 +00:00
|
|
|
|
2012-03-07 10:33:46 +00:00
|
|
|
entry_points = {
|
|
|
|
|
'console_scripts': [
|
|
|
|
|
'pelican = pelican:main',
|
2012-03-16 18:53:08 +00:00
|
|
|
'pelican-import = pelican.tools.pelican_import:main',
|
|
|
|
|
'pelican-quickstart = pelican.tools.pelican_quickstart:main',
|
|
|
|
|
'pelican-themes = pelican.tools.pelican_themes:main'
|
2013-05-14 23:41:18 -07:00
|
|
|
]
|
2012-03-07 10:33:46 +00:00
|
|
|
}
|
2011-10-23 19:04:34 +02:00
|
|
|
|
2012-12-04 01:53:52 +01:00
|
|
|
|
|
|
|
|
README = open('README.rst').read()
|
|
|
|
|
CHANGELOG = open('docs/changelog.rst').read()
|
|
|
|
|
|
|
|
|
|
|
2010-08-19 04:23:07 +02:00
|
|
|
setup(
|
2012-08-13 20:55:26 +02:00
|
|
|
name="pelican",
|
2014-07-01 14:33:04 -07:00
|
|
|
version="3.4.0",
|
2012-08-13 20:55:26 +02:00
|
|
|
url='http://getpelican.com/',
|
|
|
|
|
author='Alexis Metaireau',
|
2012-12-04 01:21:57 +01:00
|
|
|
author_email='authors@getpelican.com',
|
2012-12-04 01:53:52 +01:00
|
|
|
description="A tool to generate a static blog from reStructuredText or "
|
2012-08-13 20:55:26 +02:00
|
|
|
"Markdown input files.",
|
2012-12-04 01:53:52 +01:00
|
|
|
long_description=README + '\n' + CHANGELOG,
|
2013-04-12 23:39:39 -04:00
|
|
|
packages=['pelican', 'pelican.tools'],
|
2012-08-13 20:55:26 +02:00
|
|
|
include_package_data=True,
|
|
|
|
|
install_requires=requires,
|
|
|
|
|
entry_points=entry_points,
|
|
|
|
|
classifiers=[
|
|
|
|
|
'Development Status :: 5 - Production/Stable',
|
|
|
|
|
'Environment :: Console',
|
|
|
|
|
'License :: OSI Approved :: GNU Affero General Public License v3',
|
|
|
|
|
'Operating System :: OS Independent',
|
2013-05-26 12:44:32 +02:00
|
|
|
'Programming Language :: Python :: 2',
|
2012-08-13 20:55:26 +02:00
|
|
|
'Programming Language :: Python :: 2.7',
|
2013-01-18 17:49:09 -05:00
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
|
'Programming Language :: Python :: 3.3',
|
2014-07-01 13:33:24 -07:00
|
|
|
'Programming Language :: Python :: 3.4',
|
2012-08-13 20:55:26 +02:00
|
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
|
|
|
],
|
2013-03-06 00:41:27 -08:00
|
|
|
test_suite='pelican.tests',
|
2010-08-19 04:23:07 +02:00
|
|
|
)
|