forked from 4teamwork/docxcompose
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (46 loc) · 1.34 KB
/
setup.py
File metadata and controls
50 lines (46 loc) · 1.34 KB
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
# -*- coding: utf-8 -*-
"""Installer for the docxcompose package."""
from setuptools import find_packages
from setuptools import setup
tests_require = [
'pytest',
]
setup(
name='docxcompose2',
version='1.4.2',
description="Compose .docx documents",
long_description=(open("README.rst").read() + "\n" +
open("HISTORY.txt").read()),
# Get more from https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
],
keywords='Python DOCX Word OOXML (with bayoo-docx dependency)',
author='PasaOpasen',
author_email='qtckpuhdsa@gmail.com',
url='https://github.com/PasaOpasen/docxcompose2',
license='MIT license',
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
zip_safe=True,
install_requires=[
'lxml',
'bayoo-docx >= 0.2.20',
'setuptools',
'six',
'babel',
],
extras_require={
'test': tests_require,
'tests': tests_require,
},
entry_points={
'console_scripts': [
'docxcompose = docxcompose.command:main'
]
},
)