From ef016181777bce3cb9f3178de191e473ab64be22 Mon Sep 17 00:00:00 2001 From: Ross Poulton Date: Wed, 26 Jan 2011 00:04:19 +0000 Subject: [PATCH] Add setup.py to enable project to be installed with distutils et al --- setup.py | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..f750a26f --- /dev/null +++ b/setup.py @@ -0,0 +1,43 @@ +from setuptools import setup, find_packages +import os + +version = '0.1.0' + +LONG_DESCRIPTION = """ +=============== +django-helpdesk +=============== + +This is a Django-powered helpdesk ticket tracker, designed to +plug into an existing Django website and provide you with +internal (or, perhaps, external) helpdesk management. +""" + +setup( + name='django-helpdesk', + version=version, + description="Django-powered ticket tracker for your helpdesk", + long_description=LONG_DESCRIPTION, + classifiers=[ + "Programming Language :: Python", + "Topic :: Software Development :: Libraries :: Python Modules", + "Framework :: Django", + "Environment :: Web Environment", + "Operating System :: OS Independent", + "Intended Audience :: Customer Service", + "License :: OSI Approved :: BSD License", + "Natural Language :: English", + "Topic :: Office/Business", + "Topic :: Software Development :: Bug Tracking", + ], + keywords=['django', 'helpdesk', 'tickets', 'incidents', 'cases'], + author='Ross Poulton', + author_email='ross@rossp.org', + url='http://github.com/rossp/django-helpdesk', + license='BSD', + packages=find_packages(), + include_package_data=True, + zip_safe=False, + install_requires=['setuptools'], +) +