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
This commit is contained in:
Russell Ballestrini 2022-07-06 13:56:35 -04:00
parent e09188f666
commit 16d2dc15f6
10 changed files with 43 additions and 12 deletions

View file

@ -1,6 +1,6 @@
# installation: pip install ago
from setuptools import setup
from setuptools import setup, find_packages
setup(
name="ago",
@ -10,7 +10,8 @@ setup(
long_description=open("README.rst").read(),
author="Russell Ballestrini",
author_email="russell.ballestrini@gmail.com",
url="https://git.unturf.com/python/miniuri"
url="https://git.unturf.com/python/ago",
packages=find_packages(exclude="tests"),
platforms=["All"],
license="Public Domain",
py_modules=["ago"],
@ -20,4 +21,6 @@ setup(
# setup keyword args: http://peak.telecommunity.com/DevCenter/setuptools
# built and uploaded to pypi with this:
# python setup.py sdist bdist_egg register upload
#python setup.py sdist bdist_egg
#twine upload dist/*