-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
51 lines (48 loc) · 1.56 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
import os
from setuptools import setup, find_packages
version = '0.1.0'
long_description = \
open(os.path.join("docs", "source", "README.rst")).read() + "\n" + \
open(os.path.join("docs", "source", "HISTORY.rst")).read()
setup(name='xmldirector.dita',
version=version,
description="XML-Director DITA conversion",
long_description=long_description,
# Get more strings from
# http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Programming Language :: Python",
"Framework :: Plone",
"Framework :: Plone :: 4.3",
"Framework :: Plone :: 5.0",
"Framework :: Zope2",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='xml-director DOCX XML C-Rex Plone Python DITA',
author='Andreas Jung',
author_email='info@zopyx.com',
url='http://pypi.python.org/pypi/xmldirector.dita',
license='GPL',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['xmldirector'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'clint',
'requests',
'pytidylib',
'shutilwhich',
'six',
'plac'
],
tests_require=['zope.testing'],
entry_points="""
[console_scripts]
dita2html=xmldirector.dita.converter:main
dita-install=xmldirector.dita.install:main
html2dita=xmldirector.dita.html2dita:main
[z3c.autoinclude.plugin]
target = plone
""",
)