-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (38 loc) · 1.2 KB
/
setup.py
File metadata and controls
40 lines (38 loc) · 1.2 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
# -*- encoding: utf-8 -*-
from setuptools import setup, find_packages
version = '0.9.1'
setup(
name='py3o.template',
version=version,
description="An easy solution to design reports using OpenOffice",
long_description=open("README.rst").read(),
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords='LibreOffice OpenOffice templating PDF',
author='Florent Aide',
author_email='florent.aide@gmail.com',
url='http://bitbucket.org/faide/py3o.template',
license='MIT License',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
namespace_packages=['py3o'],
include_package_data=True,
zip_safe=True,
install_requires=[
'setuptools',
'six >= 1.4',
'lxml',
'genshi >= 0.7',
'pyjon.utils > 0.6',
],
entry_points="""
# -*- Entry points: -*-
""",
tests_require=['nose', 'nosexcover', 'mock'],
test_suite='nose.collector',
)