forked from shimizukawa/sphinxcontrib-docxbuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (52 loc) · 1.76 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os, sys
BASEDIR = os.path.dirname(os.path.abspath(__file__))
version = '0.0.1'
long_description = \
open(os.path.join(BASEDIR, "src", "README.txt")).read() + \
open(os.path.join(BASEDIR, "src", "TODO.txt")).read()
classifiers = [
"Development Status :: 2 - Pre-Alpha",
#"Development Status :: 3 - Alpha",
#"Development Status :: 4 - Beta",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Office/Business :: Office Suites",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing :: Markup",
]
setup(
name='sphinxcontrib-docxbuilder',
version=version,
description='Sphinx docx builder extension.',
long_description=long_description,
classifiers=classifiers,
keywords=['sphinx','extension','builder', 'docx','OpenXML'],
author='Takayuki SHIMIZUKAWA',
author_email='shimizukawa at gmail dot com',
url='http://bitbucket.org/shimizukawa/sphinxcontrib-docxbuilder',
license='MIT',
packages=find_packages('src'),
package_dir={'': 'src'},
package_data = {'': ['buildout.cfg']},
include_package_data=True,
install_requires=[
'Sphinx',
#'docx', # docx is included this package
# -*- Extra requirements: -*-
'lxml', # required by docx
'PIL', # required by docx
],
extras_require=dict(
test=[
'Nose',
'minimock',
'pep8',
],
),
test_suite='nose.collector',
tests_require=['Nose','minimock','pep8'],
zip_safe=False,
)