forked from zapier/django-knowledge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 1.36 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from distutils.core import setup # setuptools breaks
# Dynamically calculate the version based on knowledge.VERSION
version_tuple = __import__('knowledge').VERSION
version = '.'.join([str(v) for v in version_tuple])
setup(
name='django-knowledge',
description='''A simple frontend and admin interface for dealing with help
knowledge tickets and issues, including public and private responses and searching.''',
version=version,
author='Bryan Helmig',
author_email='[email protected]',
url='http://github.com/zapier/django-knowledge',
install_requires=['Markdown>3.0', 'django-markupfield>1.4.0', 'Django<3.2'],
packages=['knowledge'],
package_data={'knowledge': ['migrations/*.py',
'static/knowledge/css/*',
'templates/django_knowledge/*.html',
'templates/django_knowledge/emails/*.html',
'templatetags/*.py']},
classifiers=['Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'],
)