trying to package this properly

This commit is contained in:
russellballestrini 2012-06-28 23:10:15 -04:00
parent 6399d25cad
commit 97beee1e9a
3 changed files with 31 additions and 0 deletions

9
.hgignore Normal file
View file

@ -0,0 +1,9 @@
# use glob syntax.
syntax: glob
*.pyc
*.swp
*.orig
*.egg*
*.gz

22
setup.py Normal file
View file

@ -0,0 +1,22 @@
from setuptools import setup, find_packages
"""
Installation
===============
easy_install miniuri
"""
#requires = []
setup(
name='miniuri',
version='0.1.11',
description='Universal URI parser',
packages=find_packages(),
include_package_data=True,
#install_requires = requires,
)
# This guy documents lots of the setup keyword args:
# http://bashelton.com/2009/04/setuptools-tutorial/#setup.py-package_dir
# build and upload to pypi with this:
#python setup.py sdist bdist_egg register upload