Skip to content

Commit

Permalink
installation mechanism of the library and ignoring the build dir
Browse files Browse the repository at this point in the history
  • Loading branch information
bmentges committed Oct 7, 2011
1 parent 1f0485b commit ddeb6d5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,2 +1,3 @@
.DS_Store
*.pyc
build
12 changes: 12 additions & 0 deletions setup.py
@@ -0,0 +1,12 @@
#!/usr/bin/env python

from distutils.core import setup

setup(name='django-cart',
version='1.0.0',
description='Django simple shopping cart',
maintainer='Bruno Carvalho',
maintainer_email='bmentges@gmail.com',
url='https://github.com/bmentges/django-cart',
packages=['cart'],
)

0 comments on commit ddeb6d5

Please sign in to comment.