forked from MegaMark16/django-live-support
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (35 loc) · 1.04 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
31
32
33
34
35
36
37
38
from setuptools import setup, find_packages
import os
version = __import__('live_support').__version__
install_requires = [
'setuptools',
'simplejson',
'django',
]
setup(
name = "django-live-support",
version = version,
url = 'http://github.com/megamark16/django-live-support',
license = 'BSD',
platforms=['OS Independent'],
description = "A django app that lets you chat with visitors to your site.",
author = "Mark Ransom",
author_email = 'megamark16@gmail.com',
packages=find_packages(),
install_requires = install_requires,
include_package_data=True,
zip_safe=False,
classifiers = [
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Communications :: Chat',
],
package_dir={
'live_support': 'live_support',
},
)