Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*pyc
*egg-info
*egg
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
from distutils.core import setup
from distutils.command.install import INSTALL_SCHEMES
import os

from distutils.command.install import INSTALL_SCHEMES
from setuptools import setup, find_packages

root = os.path.dirname(os.path.abspath(__file__))
os.chdir(root)

VERSION = '0.1.1'
VERSION = '0.1.2'

# Make data go to the right place.
# http://groups.google.com/group/comp.lang.python/browse_thread/thread/35ec7b2fed36eaec/2105ee4d9e8042cb
Expand All @@ -23,7 +24,7 @@
url="http://github.com/codasus/django-sqlcipher",
license="Creative Commons Attribution-ShareAlike 3.0 Unported License",
platforms=["any"],
packages=['sqlcipher'],
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: Django",
Expand Down