-
Notifications
You must be signed in to change notification settings - Fork 107
/
setup.py
26 lines (23 loc) · 976 Bytes
/
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
# Geraldo setup
# Downloads setuptools if not find it before try to import
try:
from setuptools import setup, find_packages
except:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
from setuptools import setup
from geraldo.version import get_version
setup(
name = 'Geraldo',
version = get_version(),
description = 'Geraldo is a reports engine for Python and Django applications',
long_description = 'Geraldo is a Python and Django pluggable application that works with ReportLab to generate complex reports.',
author = 'Marinho Brandao',
author_email = '[email protected]',
url = 'http://www.geraldoreports.org/',
#download_url = 'http://ufpr.dl.sourceforge.net/sourceforge/geraldo/Geraldo-0.2-stable.tar.gz',
license = 'GNU Lesser General Public License (LGPL)',
packages = ['geraldo', 'geraldo.tests', 'geraldo.generators',],
install_requires = ['reportlab',],
)