-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·99 lines (88 loc) · 3.15 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
89
90
91
92
93
94
95
96
97
98
99
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from os.path import join, dirname
import platform
py_impl = getattr(platform, 'python_implementation', lambda: None)
IS_PYPY = py_impl() == 'PyPy'
IS_JYTHON = py_impl() == 'Jython'
entry_points = {
'console_scripts': [
'plastex = plasTeX.plastex:main'
]
}
TESTS_REQUIRE = [
'beautifulsoup4',
'zope.testrunner',
'pyhamcrest',
]
INSTALL_REQUIRES = [
# Chameleon for template rendering.
'Chameleon >= 3.4',
'z3c.pt >= 3.1.0', # Better ZPT support than plastex, add-in to Chameleon
'z3c.ptcompat >= 2.1.0', # Make zope.pagetemplate also use the Chameleon-based ZPT
'zope.pagetemplate >= 4.3.0', # pulled in by z3c.ptcompat, pin to newer version
# tal/tales for expression language in zpt templates
'zope.tal >= 4.3.1',
'zope.tales >= 4.2.0',
'Pillow',
'six', # py3/py2 compat
'zope.annotation',
'zope.cachedescriptors >= 4.3.1',
'zope.component',
'zope.configuration',
'zope.dottedname',
'zope.dublincore',
'zope.event >= 4.3.0', # implicit dep of zope.component/interface
'zope.exceptions',
'zope.i18n >= 4.3.1', # implicit dep of Chameleon
'zope.i18nmessageid >= 4.1.0',
'zope.interface',
'zope.location',
'zope.mimetype >= 2.3.0',
'zope.proxy', # 4.1.x support py3k, uses newer APIs. Not binary compat with older extensions, must rebuild. (In partic, req zope.security >= 3.9)
'zope.traversing >= 4.2.0', # tal/tales paths, also our own traversing implementation
]
def read(name):
with open(join(dirname(__file__), name)) as f:
return f.read().strip()
setup(name="nti.plasTeX",
description="Modern, extensible, LaTeX document processing framework",
long_description=read('README.rst'),
version="0.9.3",
author="Kevin D. Smith",
author_email="[email protected]",
url="https://github.com/OpenNTI/nti.plasTeX",
keywords='latex render zope tal zpt html DOM',
license='Apache',
tests_require=TESTS_REQUIRE,
install_requires=INSTALL_REQUIRES,
classifiers=[
"Development Status :: 4 - Beta",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: Apache Software License.7",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: Jython",
"Operating System :: MacOS :: MacOS X",
"Framework :: Zope3",
],
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
entry_points=entry_points,
extras_require={
'test': TESTS_REQUIRE,
'tools': [
'repoze.sphinx.autointerface >= 0.7.1',
'sphinx >= 1.2b1', # Narrative docs
]
},
dependency_links=[
],
)