-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
58 lines (53 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
56
57
58
import os
from setuptools import find_packages
from setuptools import setup
install_requires = [
'setuptools',
'PasteScript',
'Cheetah<=2.2.1', # https://github.com/collective/templer.core/issues/3
'templer.core',
]
tests_require = [
'virtualenv',
'PasteScript',
'Cheetah<=2.2.1',
'pytest',
'mr.laforge',
]
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
setup(name='kotti_paster',
version='0.3dev',
description="Paster AddOn Template for Kotti",
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Programming Language :: Python",
"Framework :: Buildout",
"License :: Repoze Public License",
],
keywords='kotti addon scaffold',
author='Marco Scheidhuber and Tom Lazar',
author_email='[email protected]',
url='http://pypi.python.org/pypi/kotti_paster/',
license='BSD-derived (http://www.repoze.org/LICENSE.txt)',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
tests_require=tests_require,
entry_points={
'paste.paster_create_template': [
'kotti_addon = kotti_paster.paster_templates:Addon',
'kotti_project = kotti_paster.paster_templates:Buildout',
]
},
extras_require={
'testing': tests_require,
},
message_extractors={'kotti_paster': [
('**.py', 'lingua_python', None),
('**.zcml', 'lingua_xml', None),
('**.pt', 'lingua_xml', None),
]},
)