Changeset 6:e876d1a8aa91

Show
Ignore:
Timestamp:
07/07/08 09:45:12 (5 years ago)
Author:
Nicolas Evrard <nicoe@…>
Branch:
default
Tags:
0.1.0
Message:

Preparation for the release

Files:
2 added
1 modified

Legend:

Unmodified
Added
Removed
  • setup.py

    r0 r6  
    11# -*- encoding: utf-8 -*- 
    2 from distutils.core import setup 
     2import relatorio 
     3from setuptools import setup, find_packages 
    34 
    4 # Probably a lot to do here 
    55setup( 
    6     name="ohreport", 
    7     url="http://www.openhex.org", 
     6    name="relatorio", 
     7    url="http://relatorio.openhex.org", 
    88    author="Nicolas Évrard", 
    9     author_email="nicoe@altern.org", 
    10     description="A reporting library based on genshi and reportlab" 
    11 ) 
     9    author_email="nicoe@openhex.org", 
     10    description="A templating library able to output odt and pdf files", 
     11    long_description=""" 
     12relatorio 
     13======== 
     14 
     15A templating library which provides a way to easily output odt and pdf file. 
     16 
     17relatorio also provides a report repository allowing you to link python objects 
     18and report together, find reports by mimetypes/name/pyhon objects. 
     19""", 
     20    license="GPL License", 
     21    version=relatorio.__version__, 
     22    packages=find_packages(exclude=['tests', 'examples']), 
     23    classifiers=[ 
     24        "Development Status :: 3 - Alpha", 
     25        "Intended Audience :: Developers", 
     26        "License :: OSI Approved :: GNU General Public License (GPL)", 
     27        "Operating System :: OS Independent", 
     28        "Programming Language :: Python", 
     29        "Topic :: Software Development :: Libraries :: Python Modules" 
     30        "Topic :: Text Processing", 
     31    ], 
     32    test_suite="nose.collector")