[Subversion] / Extremes / setup.py  

View of /Extremes/setup.py

Parent Directory | Revision Log
Revision: 2731 - (download) (as text)
Fri Apr 3 23:55:06 2015 UTC (8 years, 11 months ago) by pje
File size: 1074 byte(s)
Experimental Python 3 support
#!/usr/bin/env python
"""Distutils setup file"""

import ez_setup
ez_setup.use_setuptools()
from setuptools import setup

# Metadata
PACKAGE_NAME = "Extremes"
PACKAGE_VERSION = "1.2"
PACKAGES = ['peak', 'peak.util']

def get_description():
    # Get our long description from the documentation
    f = open('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="Production-quality 'Min' and 'Max' objects (adapted from PEP 326)",
    long_description = open('README.txt').read(), # get_description(),
    author="Phillip J. Eby",
    author_email="peak@eby-sarna.com",
    license="PSF or ZPL",
    url="http://pypi.python.org/pypi/Extremes",
    test_suite = 'peak.util.extremes',
    packages = PACKAGES,
    namespace_packages = PACKAGES,
)


cvs-admin@eby-sarna.com

Powered by ViewCVS 1.0-dev

ViewCVS and CVS Help