successfully packaged egg and registered to pypi
This commit is contained in:
parent
97beee1e9a
commit
dd9171d3f0
3 changed files with 19 additions and 6 deletions
|
|
@ -6,4 +6,4 @@ syntax: glob
|
|||
*.orig
|
||||
*.egg*
|
||||
*.gz
|
||||
|
||||
build/*
|
||||
|
|
|
|||
23
setup.py
23
setup.py
|
|
@ -9,14 +9,27 @@ easy_install miniuri
|
|||
|
||||
setup(
|
||||
name='miniuri',
|
||||
version='0.1.11',
|
||||
version='0.0.1',
|
||||
description='Universal URI parser',
|
||||
packages=find_packages(),
|
||||
include_package_data=True,
|
||||
|
||||
author = 'Russell Ballestrini',
|
||||
author_email = 'russell@ballestrini.net',
|
||||
keywords = 'uri url parser',
|
||||
url = 'https://bitbucket.org/russellballestrini/miniuri/src/tip/miniuri/miniuri.py',
|
||||
|
||||
platforms=['All'],
|
||||
license='Public Domain',
|
||||
|
||||
#install_requires = requires,
|
||||
#packages=find_packages(),
|
||||
package_dir = {'': 'src'},
|
||||
py_modules = ['miniuri'],
|
||||
include_package_data=True,
|
||||
#zip_safe=False
|
||||
)
|
||||
# This guy documents lots of the setup keyword args:
|
||||
# http://bashelton.com/2009/04/setuptools-tutorial/#setup.py-package_dir
|
||||
|
||||
# setup keyword args:
|
||||
# http://peak.telecommunity.com/DevCenter/setuptools
|
||||
|
||||
# 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