-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (24 loc) · 833 Bytes
/
setup.py
File metadata and controls
32 lines (24 loc) · 833 Bytes
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
from setuptools import setup
setup(
name = 'Python-OOXML',
version = '0.13',
author = 'Aleksandar Erkalovic',
author_email = 'aerkalov@gmail.com',
packages = ['ooxml'],
url = 'https://github.com/booktype/python-ooxml',
license = 'GNU Affero General Public License',
description = 'Python-OOXML is a Python library for parsing Office Open XML files.',
long_description = open('README.rst').read(),
keywords = ['ooxml', 'docx'],
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules"
],
install_requires = [
"lxml", "six"
],
test_suite = "tests"
)