Skip to content

Commit

Permalink
added Setup Files
Browse files Browse the repository at this point in the history
  • Loading branch information
zaturox committed Mar 25, 2015
1 parent 8b687c6 commit b0bc572
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
/docu/dokumentation.pdf
/docu/docu.sublime-workspace
/docu/docu.pdf

/dist
/django_tartan.egg-info

migrations/
__pycache__/*

Expand Down
3 changes: 3 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
This is an internal Test distribution.

You are not allowed to copy, modify or execute this package without explicit permission.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
recursive-include Tartan/static *
recursive-include Tartan/templates *
3 changes: 3 additions & 0 deletions README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
This is an internal Test distribution.

You are not allowed to copy, modify or execute this package without explicit permission.
21 changes: 21 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
from setuptools import setup
import os

setup(
name="django-tartan",
version="0.8.0",

author="Julian Geywitz, Michael Schubert",
author_email="[email protected]",

packages=["Tartan"],
include_package_data = True,

#package_data = {'PhotoGallery':['templates/*']},
#package_data={"PhotoGallery": list(map(lambda x: x[0].lstrip("PhotoGallery/")+"/*", filter (lambda x: x[2],os.walk("PhotoGallery/static")))) + ["templates/*", "templates/PhotoGallery/*"]},

zip_safe=False,

url="https://github.com/geigi/Tartan",
description="Django based Photo Gallery",
)

0 comments on commit b0bc572

Please sign in to comment.