Skip to content
This repository has been archived by the owner on Nov 28, 2019. It is now read-only.

Commit

Permalink
Basic structure for the project
Browse files Browse the repository at this point in the history
  • Loading branch information
fsouza committed Nov 9, 2011
1 parent 0c6a8cb commit 18ff3d5
Show file tree
Hide file tree
Showing 8 changed files with 40 additions and 0 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include *.rst
exclude settings_test.py
prune roan/tests
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
bootstrap:
@pip install -r requirements.txt

clean:
@git clean -dfX

test: clean
@nostests --with-django --django-sqlite --django-settings=settings_test --with-coverage --cover-packages=roan --cover-erase
4 changes: 4 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
coverage==3.5.1
Django>=1.2
nose==1.1.2
NoseDjango==0.8.1
1 change: 1 addition & 0 deletions roan/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = '0.0.1'
Empty file added roan/models.py
Empty file.
Empty file added roan/tests/__init__.py
Empty file.
3 changes: 3 additions & 0 deletions settings_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
INSTALLED_APPS = (
'roan',
)
21 changes: 21 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import setuptools

import roan

README = ""

with open("README.rst") as f:
README = f.read()


setuptools.setup(
name='roan',
version=roan.__version__,
description='Django per-model cache purging',
long_description=README,
author='CobraTeam',
author_email='[email protected]',
packages=['roan'],
include_package_data=True,
install_requires=['Django>=1.2', 'request==0.7.6'],
)

0 comments on commit 18ff3d5

Please sign in to comment.