ago/setup.py
RussellBallestrini ce0c9579b6 added a README
2012-06-29 19:56:25 -04:00

27 lines
700 B
Python

# installation: easy_install ago
from setuptools import setup
setup(
name = 'ago',
version = '0.0.2',
description = 'ago: Human readable timedeltas',
keywords = 'ago human readable time deltas timedelta',
long_description = open('README').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