mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
move tools in pelican.tools and add the pelican.tools package to setup.py
This commit is contained in:
parent
4714276e2c
commit
4e4af9d011
9 changed files with 777 additions and 777 deletions
8
setup.py
8
setup.py
|
|
@ -13,9 +13,9 @@ except ImportError:
|
||||||
entry_points = {
|
entry_points = {
|
||||||
'console_scripts': [
|
'console_scripts': [
|
||||||
'pelican = pelican:main',
|
'pelican = pelican:main',
|
||||||
'pelican-import = tools.pelican_import:main',
|
'pelican-import = pelican.tools.pelican_import:main',
|
||||||
'pelican-quickstart = tools.pelican_quickstart:main',
|
'pelican-quickstart = pelican.tools.pelican_quickstart:main',
|
||||||
'pelican-themes = tools.pelican_themes:main'
|
'pelican-themes = pelican.tools.pelican_themes:main'
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -27,7 +27,7 @@ setup(
|
||||||
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'],
|
packages = ['pelican', 'pelican.tools'],
|
||||||
include_package_data = True,
|
include_package_data = True,
|
||||||
install_requires = requires,
|
install_requires = requires,
|
||||||
entry_points = entry_points,
|
entry_points = entry_points,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue