added a README

This commit is contained in:
RussellBallestrini 2012-06-29 19:56:25 -04:00
parent c672eb00c9
commit ce0c9579b6
3 changed files with 79 additions and 24 deletions

View file

@ -3,21 +3,21 @@
from setuptools import setup
setup(
name='ago',
version='0.0.1',
description='ago: Human readable timedeltas',
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',
keywords = 'ago human readable time deltas timedelta',
url = 'https://bitbucket.org/russellballestrini/ago/src',
platforms=['All'],
license='Public Domain',
platforms = ['All'],
license = 'Public Domain',
#package_dir = {'': ''},
py_modules = ['ago'],
include_package_data=True,
include_package_data = True,
)
# setup keyword args: http://peak.telecommunity.com/DevCenter/setuptools