moved miniuri.py our of src and added README
This commit is contained in:
parent
dd9171d3f0
commit
707324959d
3 changed files with 68 additions and 30 deletions
27
setup.py
27
setup.py
|
|
@ -1,35 +1,26 @@
|
|||
from setuptools import setup, find_packages
|
||||
# installation: easy_install miniuri
|
||||
|
||||
"""
|
||||
Installation
|
||||
===============
|
||||
easy_install miniuri
|
||||
"""
|
||||
#requires = []
|
||||
from setuptools import setup
|
||||
|
||||
setup(
|
||||
name='miniuri',
|
||||
version='0.0.1',
|
||||
description='Universal URI parser',
|
||||
version='0.0.2',
|
||||
long_description = open('README').read(),
|
||||
description='miniuri: The Universal URI Parser',
|
||||
keywords = 'miniuri uri url parser',
|
||||
|
||||
author = 'Russell Ballestrini',
|
||||
author_email = 'russell@ballestrini.net',
|
||||
keywords = 'uri url parser',
|
||||
url = 'https://bitbucket.org/russellballestrini/miniuri/src/tip/miniuri/miniuri.py',
|
||||
url = 'https://bitbucket.org/russellballestrini/miniuri/src',
|
||||
|
||||
platforms=['All'],
|
||||
license='Public Domain',
|
||||
|
||||
#install_requires = requires,
|
||||
#packages=find_packages(),
|
||||
package_dir = {'': 'src'},
|
||||
py_modules = ['miniuri'],
|
||||
include_package_data=True,
|
||||
#zip_safe=False
|
||||
)
|
||||
|
||||
# setup keyword args:
|
||||
# http://peak.telecommunity.com/DevCenter/setuptools
|
||||
# setup keyword args: http://peak.telecommunity.com/DevCenter/setuptools
|
||||
|
||||
# build and upload to pypi with this:
|
||||
# built and uploaded to pypi with this:
|
||||
#python setup.py sdist bdist_egg register upload
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue