Skip to content

Commit

Permalink
Added setup.py and manifest template.
Browse files Browse the repository at this point in the history
  • Loading branch information
jezdez committed Sep 25, 2009
1 parent 07e9363 commit e8f643b
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
4 changes: 4 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,4 @@
include AUTHORS
include LICENSE.txt
recursive-include workflow/fixtures *.json
recursive-include workflow/templates/graphviz *.dot
36 changes: 36 additions & 0 deletions setup.py
@@ -0,0 +1,36 @@
import os
from distutils.core import setup

def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()

setup(
name='django-workflow',
version='0.1.0',
description="A lightweight workflow engine application for Django based web-applications.",
long_description=read('README.txt'),
author='Nicholas H.Tollervey',
author_email='ntoll@ntoll.org',
license='BSD',
url='http://github.com/ntoll/workflow',
packages=[
'workflow',
'workflow.unit_tests'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
package_data = {
'workflow': [
'fixtures/*.json',
'templates/graphviz/*.dot',
]
},
zip_safe=False, # required to convince setuptools/easy_install to unzip the package data
)

0 comments on commit e8f643b

Please sign in to comment.