mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Add a setup.py for packaging :)
--HG-- rename : pelican/pelican => bin/pelican rename : pelican/themes/archives.html => pelican/themes/templates/archives.html rename : pelican/themes/article.html => pelican/themes/templates/article.html rename : pelican/themes/base.html => pelican/themes/templates/base.html rename : pelican/themes/categories.html => pelican/themes/templates/categories.html rename : pelican/themes/category.html => pelican/themes/templates/category.html rename : pelican/themes/index.html => pelican/themes/templates/index.html rename : pelican/themes/tag.html => pelican/themes/templates/tag.html rename : pelican/themes/tags.html => pelican/themes/templates/tags.html
This commit is contained in:
parent
75821fb644
commit
ebd906cd4b
22 changed files with 123 additions and 104 deletions
21
setup.py
Normal file
21
setup.py
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
from distutils.core import setup
|
||||
|
||||
setup(
|
||||
name = "pelican",
|
||||
version = '1.0',
|
||||
url = 'http://hg.lolnet.org/pelican/',
|
||||
author = 'Alexis Metaireau',
|
||||
author_email = 'alexis@notmyidea.org',
|
||||
description = "A tool to generate a static blog, with restructured text input files.",
|
||||
packages = ['pelican'],
|
||||
package_data = {'pelican': ['themes/templates/*']},
|
||||
scripts = ['bin/pelican'],
|
||||
classifiers = ['Development Status :: 5 - Production/Stable',
|
||||
'Environment :: Console',
|
||||
'License :: OSI Approved :: GNU Affero General Public License v3',
|
||||
'Operating System :: OS Independent',
|
||||
'Programming Language :: Python',
|
||||
'Topic :: Internet :: WWW/HTTP',
|
||||
'Topic :: Software Development :: Libraries :: Python Modules',
|
||||
],
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue