forked from github/pelican
21 lines
875 B
Python
21 lines
875 B
Python
|
|
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',
|
||
|
|
],
|
||
|
|
)
|