-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (17 loc) · 711 Bytes
/
setup.py
File metadata and controls
22 lines (17 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from os.path import abspath, dirname, join, normpath
from setuptools import setup
setup(
name = 'pelican-alias',
version = '1.1',
py_modules = ('pelican_alias',),
zip_safe = False,
include_package_data = True,
install_requires = ['pelican>=3.1.1'],
author = 'Christopher Williams',
author_email = 'chris@christopher-williams.net',
license = 'MIT',
url = 'http://github.com/Nitron/pelican-alias',
download_url = 'http://github.com/Nitron/pelican-alias/tarball/1.0',
keywords = 'pelican blog',
description = 'Pelican plugin for creating alias pages (useful for moving from a different URL scheme such as /<year>/<month>/<title>/ as used by Wordpress).',
)