Skip to content

Commit

Permalink
add setup.py which installs django app
Browse files Browse the repository at this point in the history
  • Loading branch information
cfra committed Jan 18, 2012
1 parent 34398e8 commit c15917b
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -6,3 +6,6 @@
media/djimages
media/cache
local_settings.py
build
dist
djiki.egg-info
4 changes: 4 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,4 @@
include README.rst
include COPYING
recursive-include djiki/locale *
recursive-include djiki/templates/djiki *.html
31 changes: 31 additions & 0 deletions setup.py
@@ -0,0 +1,31 @@
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages

setup(
name = 'djiki',
version = '0.1.0',
description = 'Django Wiki Application',
url = 'https://github.com/emesik/djiki/network',
long_description = open('README.rst').read(),
author = 'Michał Sałaban',
author_email = 'michal@salaban.info',
requires = [
# 'diff_match_patch',
'creole',
],
packages = find_packages(),
include_package_data = True,
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
zip_safe = False,
)

0 comments on commit c15917b

Please sign in to comment.