forked from mherkazandjian/docxsphinx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (47 loc) · 1.53 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
# -*- 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.md")).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='docxsphinx',
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/docxsphinx',
license='MIT',
packages=find_packages('src'),
package_dir={'': 'src'},
package_data={'': ['buildout.cfg']},
include_package_data=True,
install_requires=[
'Sphinx',
'python-docx',
],
extras_require=dict(
test=[
'Nose',
],
),
test_suite='nose.collector',
tests_require=['Nose'],
zip_safe=False,
)