-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (33 loc) · 1.43 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# This file is a part of the SEO plugin for MediaCore CE, http://mediacorecommunity.org
# Copyright 2010-2013 MediaCore Inc., Felix Schwarz and other contributors.
# For the exact contribution history, see the git revision log.
# The source code contained in this file is licensed under the GPLv3 or
# (at your option) any later version.
# See LICENSE.txt in the main project directory, for more information.
from setuptools import setup, find_packages
setup(
name = 'MediaCore-SEO',
version = '0.11dev',
author = 'Simple Station Inc.',
author_email = '[email protected]',
description = 'A MediaCore plugin for SEO optimization through page Metadata.',
packages=find_packages(),
namespace_packages = ['mediacoreext'],
include_package_data=True,
zip_safe = False,
install_requires = [
# even though MediaDrop is required we can not specify this here without
# breaking compatiblity to either MediaCore CE (due to setuptools'
# limitations)
# 'MediaCore >= 0.11dev',
],
entry_points = {
'mediacore.plugin': ['seo = mediacoreext.simplestation.seo.mediacore_plugin'],
},
message_extractors = {'mediacoreext/simplestation/seo': [
('**.py', 'python', None),
('templates/**.html', 'genshi', {'template_class': 'genshi.template.markup:MarkupTemplate'}),
('public/**', 'ignore', None),
('tests/**', 'ignore', None),
]},
)