trying to package this properly
This commit is contained in:
parent
6399d25cad
commit
97beee1e9a
3 changed files with 31 additions and 0 deletions
9
.hgignore
Normal file
9
.hgignore
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
# use glob syntax.
|
||||
syntax: glob
|
||||
|
||||
*.pyc
|
||||
*.swp
|
||||
*.orig
|
||||
*.egg*
|
||||
*.gz
|
||||
|
||||
22
setup.py
Normal file
22
setup.py
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue