ago/setup.py
Russell Ballestrini 16d2dc15f6 Buncha fix ups
renamed:    .hgignore -> .gitignore
	new file:   .gitlab-ci.yml
	new file:   Makefile
	modified:   README.rst
	new file:   ago/__init__.py
	renamed:    ago.py -> ago/ago.py
	new file:   ago/tests/__init__.py
	renamed:    test_ago.py -> ago/tests/test_ago.py
	new file:   requirements-test.txt
	modified:   setup.py
2022-07-06 13:56:35 -04:00

26 lines
750 B
Python

# installation: pip install ago
from setuptools import setup, find_packages
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/ago",
packages=find_packages(exclude="tests"),
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
#twine upload dist/*