Version 1.0.0

added miniuri/__init__.py
added miniuri/miniuri.py
changed .hgignore
changed README
changed setup.py
This commit is contained in:
russellballestrini 2016-01-23 21:25:47 -05:00
parent 0843cc1f2b
commit ba32fbbe4d
5 changed files with 159 additions and 15 deletions

View file

@ -1,10 +1,10 @@
# installation: easy_install miniuri
# installation: pip install miniuri
from setuptools import setup
setup(
name='miniuri',
version='0.0.2',
version='1.0.0',
long_description = open('README').read(),
description='miniuri: The Universal URI Parser',
keywords = 'miniuri uri url parser',
@ -18,6 +18,18 @@ setup(
py_modules = ['miniuri'],
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',
],
)
# setup keyword args: http://peak.telecommunity.com/DevCenter/setuptools