-
Notifications
You must be signed in to change notification settings - Fork 42
/
setup.py
executable file
·48 lines (44 loc) · 1.52 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
#!/usr/bin/python3
import os
import re
from setuptools import setup, find_packages
def get_version():
init = open(os.path.join(os.path.dirname(__file__), 'aeroolib',
'__init__.py')).read()
return re.search(r"""__version__ = '([0-9.\sA-Za-z]*)'""", init).group(1)
setup(
name="aeroolib",
url="http://www.alistek.com/",
author="Alistek Ltd",
author_email="info@alistek.com",
maintainer=u"Alistek Ltd",
maintainer_email="info@alistek.com",
description="A templating library able to output ODF files",
long_description="""
aeroolib
=========
A templating library which provides a way to easily output all kind of
different files (odt, ods). Adding support for more filetype is easy:
you just have to create a plugin for this.
aeroolib also provides a report repository allowing you to link python objects
and report together, find reports by mimetypes/name/python objects.
""",
license="GPL License",
version=get_version(),
packages=find_packages(),
python_requires='>=3',
install_requires=[
"Genshi >= 0.5",
"lxml >= 2.0"
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing",
],
test_suite="nose.collector",
)