[Subversion] / PyDicia / setup.py  

View of /PyDicia/setup.py

Parent Directory | Revision Log
Revision: 2301 - (download) (as text)
Thu Apr 5 05:15:28 2007 UTC (16 years, 11 months ago) by pje
File size: 1082 byte(s)
PyDicia: a library for printing shipping labels, envelopes, postage,
and more, using endicia.com's DAZzle client.  This initial version
doesn't do anything yet except provide the core XML generation
engine, and a skeleton/todo-list for the docs.  But most of what's
listed in the doc skeleton will be ultra-trivial syntax sugaring of
the core engine.  The remainder of the implementation will then be
simply a matter of handling transmission of the XML to and from the
DAZzle client.
#!/usr/bin/env python
"""Distutils setup file"""

import ez_setup
ez_setup.use_setuptools()
from setuptools import setup

# Metadata
PACKAGE_NAME = "PyDicia"
PACKAGE_VERSION = "0.1"

def get_description():
    # Get our long description from the documentation
    f = file('README.txt')
    lines = []
    for line in f:
        if not line.strip():
            break     # skip to first blank line
    for line in f:
        if line.startswith('.. contents::'):
            break     # read to table of contents
        lines.append(line)
    f.close()
    return ''.join(lines)

setup(
    name=PACKAGE_NAME,
    version=PACKAGE_VERSION,
    description= "Print labels, envelopes, US postage, and more using the endicia.com API",
    long_description = get_description(),
    url = "http://cheeseshop.python.org/pypi/PyDicia",
    author="Phillip J. Eby",
    author_email="peak@eby-sarna.com",
    license="PSF or ZPL",
    test_suite = 'pydicia',
    py_modules = ['pydicia'],
    install_requires = [
        'ElementTree', 'simplegeneric>=0.6', 'DecoratorTools>=1.4'
    ]
)


cvs-admin@eby-sarna.com

Powered by ViewCVS 1.0-dev

ViewCVS and CVS Help