miniuri/setup.py
Russell Ballestrini 143127cf7a move tests
renamed:    .hgignore -> .gitignore
	new file:   .gitlab-ci.yml
	new file:   Makefile
	new file:   miniuri/tests/__init__.py
	renamed:    test_miniuri.py -> miniuri/tests/test_miniuri.py
	new file:   requirements-test.txt
	modified:   setup.py
2022-07-06 14:20:55 -04:00

42 lines
1.5 KiB
Python

# installation: pip install miniuri
from setuptools import setup, find_packages
setup(
name="miniuri",
version="1.0.9",
long_description=open("README.rst").read(),
description="miniuri: The Universal URI Parser",
keywords="miniuri uri url parser",
author="Russell Ballestrini",
author_email="russell.ballestrini@gmail.com",
url="https://git.unturf.com/python/miniuri",
platforms=["All"],
license="Public Domain",
packages=find_packages(exclude="tests"),
include_package_data=True,
classifiers=[
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)
# 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/*