Skip to content

Commit

Permalink
git ignore and setup file
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Reeves committed Sep 24, 2011
1 parent 07e3178 commit e2cd53c
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .gitignore
@@ -0,0 +1,14 @@
*.py[co]
*.egg
*.egg-info
dist
build
pip-log.txt
.coverage
.DS_Store
._*
media/*
logs/*
.ropeproject
*.db
*.sqlite
17 changes: 17 additions & 0 deletions setup.py
@@ -0,0 +1,17 @@
#!/usr/bin/env python


import sys, os
from setuptools import setup, find_packages


setup(
name = 'portfolio',
version = '0.1',
description='Django URL Exposure to Javascript',
author='Dimitri Gnidash',
author_email='dimitri.gnidash@gmail.com',
url='https://github.com/Dimitri-Gnidash/django-js-utils',
packages = find_packages(
exclude = ['ez_setup', 'examples', 'tests']),
)

0 comments on commit e2cd53c

Please sign in to comment.