ago/setup.py
Russell Ballestrini e09188f666 update revision control details.
modified:   README.rst
	modified:   setup.py
2022-07-06 13:09:09 -04:00

23 lines
688 B
Python

# installation: pip install ago
from setuptools import setup
setup(
name="ago",
version="0.0.94",
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@gmail.com",
url="https://git.unturf.com/python/miniuri"
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