mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Merge pull request #261 from AndreaCrotti/package
move tools in pelican.tools and add the pelican.tools package to setup.p...
This commit is contained in:
commit
8b8b9f59a1
9 changed files with 777 additions and 777 deletions
8
setup.py
8
setup.py
|
|
@ -13,9 +13,9 @@ except ImportError:
|
|||
entry_points = {
|
||||
'console_scripts': [
|
||||
'pelican = pelican:main',
|
||||
'pelican-import = tools.pelican_import:main',
|
||||
'pelican-quickstart = tools.pelican_quickstart:main',
|
||||
'pelican-themes = tools.pelican_themes:main'
|
||||
'pelican-import = pelican.tools.pelican_import:main',
|
||||
'pelican-quickstart = pelican.tools.pelican_quickstart:main',
|
||||
'pelican-themes = pelican.tools.pelican_themes:main'
|
||||
]
|
||||
}
|
||||
|
||||
|
|
@ -27,7 +27,7 @@ setup(
|
|||
author_email = 'alexis@notmyidea.org',
|
||||
description = "A tool to generate a static blog from reStructuredText or Markdown input files.",
|
||||
long_description=open('README.rst').read(),
|
||||
packages = ['pelican'],
|
||||
packages = ['pelican', 'pelican.tools'],
|
||||
include_package_data = True,
|
||||
install_requires = requires,
|
||||
entry_points = entry_points,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue