-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
55 lines (49 loc) · 1.68 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from setuptools import setup, find_packages
import os
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
long_description = (
read('README.md')
+ '\n' +
read('CONTRIBUTORS.txt')
+ '\n' +
read('CHANGES.txt'))
setup(name='kotti_navigation',
version='0.5.1dev',
description="""Add a configurable navigation to your Kotti site""",
long_description=long_description,
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Framework :: Pylons',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'License :: Repoze Public License',
],
keywords='kotti addon navigation',
author='Marco Scheidhuber',
author_email='[email protected]',
url='http://pypi.python.org/pypi/kotti_navigation',
license='BSD-derived (http://www.repoze.org/LICENSE.txt)',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'Kotti>=1.0',
'kotti_settings>=0.2',
'deform_bootstrap',
],
entry_points={
'fanstatic.libraries': [
'kotti_navigation = kotti_navigation.fanstatic:library',
],
},
extras_require={},
message_extractors={'kotti_navigation': [
('**.py', 'lingua_python', None),
('**.zcml', 'lingua_xml', None),
('**.pt', 'lingua_xml', None),
]},
)