-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
57 lines (53 loc) · 1.73 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
56
57
from setuptools import setup, find_packages
import os
version = '0.5.1dev'
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
AUTHORS = open(os.path.join(here, 'AUTHORS.txt')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
long_description = (
README
+ '\n' +
AUTHORS
+ '\n' +
CHANGES
)
setup(name='kotti_blog',
version=version,
description="Add a simple blog 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 blog',
author='Marco Scheidhuber',
author_email='j23d@jusid.de',
url='https://github.com/Kotti/kotti_blog',
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',
'kotti_settings>=0.1',
'js.jquery_infinite_ajax_scroll',
'python-dateutil',
],
entry_points="""
[fanstatic.libraries]
kotti_blog = kotti_blog.fanstatic:library
""",
extras_require={},
message_extractors={'kotti_blog': [
('**.py', 'lingua_python', None),
('**.zcml', 'lingua_xml', None),
('**.pt', 'lingua_xml', None),
]},
)