-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
88 lines (82 loc) · 2.89 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
import sys
from setuptools import setup, find_packages
version = '1.0b5-dev'
long_description = (
open('README.txt').read()
+ '\n' +
'Contributors\n'
'============\n'
+ '\n' +
open('CONTRIBUTORS.txt').read()
+ '\n' +
open('CHANGES.txt').read()
+ '\n')
tests_require = [
'unittest2',
'Cheetah'],
setup(name='templer.core',
version=version,
description="Core functionality for the templer tool",
long_description=long_description,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: Zope2",
"Framework :: Zope3",
"Framework :: Plone",
"Framework :: Plone :: 3.2",
"Framework :: Plone :: 3.3",
"Framework :: Plone :: 4.0",
"Framework :: Plone :: 4.1",
"Framework :: Buildout",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
'Programming Language :: Python :: 2.4',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Code Generators",
],
keywords='web zope command-line skeleton project',
author='Cris Ewing',
author_email='[email protected]',
url='https://github.com/collective/templer.core',
license='MIT',
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['templer'],
include_package_data=True,
platforms='Any',
zip_safe=False,
install_requires=[
'setuptools',
"Cheetah>1.0,<=2.2.1",
],
tests_require=tests_require,
extras_require=dict(test=tests_require),
entry_points="""
[paste.paster_create_template]
basic_namespace = templer.core:BasicNamespace
nested_namespace = templer.core:NestedNamespace
package = templer.core:PackageTemplate
[templer.templer_structure]
egg_docs = templer.core.structures:EggDocsStructure
agpl3 = templer.core.structures:AGPL3Structure
asl = templer.core.structures:ASLStructure
bsd = templer.core.structures:BSDStructure
efl = templer.core.structures:EFLStructure
fdl = templer.core.structures:FDLStructure
gpl = templer.core.structures:GPLStructure
gpl3 = templer.core.structures:GPL3Structure
lgpl = templer.core.structures:LGPLStructure
mit = templer.core.structures:MITStructure
mpl = templer.core.structures:MPLStructure
mpl11 = templer.core.structures:MPL11Structure
npl = templer.core.structures:NPLStructure
zpl = templer.core.structures:ZPLStructure
[console_scripts]
templer = templer.core.control_script:run
""",
)