The result of running black .

changed ago.py
changed setup.py
changed test_ago.py
This commit is contained in:
russellballestrini 2018-05-25 17:33:10 -04:00
parent 36102bba88
commit b2f6af9d70
3 changed files with 127 additions and 105 deletions

View file

@ -2,26 +2,22 @@
from setuptools import setup
setup(
name = 'ago',
version = '0.0.92',
description = 'ago: Human readable timedeltas',
keywords = 'ago human readable time deltas timedelta datetime timestamp',
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(
name="ago",
version="0.0.92",
description="ago: Human readable timedeltas",
keywords="ago human readable time deltas timedelta datetime timestamp",
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