ago/setup.py
RussellBallestrini a2574a05d8 ago 0.0.5 version
* consolidated human and delta2human
* fixed docs and tests to reflect consolidation
2013-01-12 15:06:09 -05:00

27 lines
713 B
Python

# installation: easy_install ago
from setuptools import setup
setup(
name = 'ago',
version = '0.0.5',
description = 'ago: Human readable timedeltas',
keywords = 'ago human readable time deltas timedelta datetime',
long_description = open('README.rst').read(),
author = 'Russell Ballestrini',
author_email = 'russell@ballestrini.net',
url = 'https://bitbucket.org/russellballestrini/ago/src',
platforms = ['All'],
license = 'Public Domain',
py_modules = ['ago'],
include_package_data = True,
)
# setup keyword args: http://peak.telecommunity.com/DevCenter/setuptools
# built and uploaded to pypi with this:
# python setup.py sdist bdist_egg register upload