forked from NetAngels/django-webodt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1.04 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
#!/usr/bin/env python
# -*- coding: utf8 -*-
from distutils.core import setup
import os, sys
reload(sys).setdefaultencoding("UTF-8")
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except:
return ''
setup(
name='django-webodt',
version='0.3.1',
author='NetAngels',
author_email='info@netangels.ru',
packages=['webodt', 'webodt.converters', 'webodt.tests'],
url='http://github.com/netangels/django-webodt',
license = 'BSD License',
description = u'ODF template handler and odt to html, pdf, doc, etc converter',
long_description = read('README.rst'),
install_requires = [
'Django',
'lxml',
],
classifiers=(
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
),
)