Skip to content

Commit

Permalink
getting setup.py right
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Bengtsson committed Feb 27, 2010
1 parent c1c2a89 commit 50afba6
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Expand Up @@ -4,4 +4,5 @@
db
.coverage
htmlcov
dist
dist/
build/
12 changes: 12 additions & 0 deletions MANIFEST
@@ -0,0 +1,12 @@
INSTALL
LICENSE
README.md
setup.py
django_mongokit/version.txt
django_mongokit/__init__.py
django_mongokit/document.py
django_mongokit/shortcut.py
django_mongokit/test_settings.py
django_mongokit/tests.py
django_mongokit/mongodb/__init__.py
django_mongokit/mongodb/base.py
3 changes: 0 additions & 3 deletions MANIFEST.in

This file was deleted.

1 change: 0 additions & 1 deletion django_mongokit/__init__.py
@@ -1,4 +1,3 @@
__version__ = '0.1.1'
__all__ = ('connection', 'get_database')

from shortcut import connection, get_database
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -6,7 +6,7 @@


setup(name='django-mongokit',
version=resource_string(__name__, 'version.txt'),
version=resource_string(__name__, 'django_mongokit/version.txt'),
author="Peter Bengtsson",
author_email="peter@fry-it.com",
url="http://github.com/peterbe/django-mongokit",
Expand Down

0 comments on commit 50afba6

Please sign in to comment.