forked from etianen/django-watson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (38 loc) · 1.22 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
39
40
from distutils.core import setup
setup(
name = "django-watson",
version = "1.1.1",
description = "Full-text multi-table search application for Django. Easy to install and use, with good performance.",
long_description = open("README.markdown").read(),
author = "Dave Hall",
author_email = "[email protected]",
url = "http://github.com/etianen/django-watson",
download_url = "http://github.com/downloads/etianen/django-watson/django-watson-1.1.1.tar.gz",
zip_safe = False,
packages = [
"watson",
"watson.management",
"watson.management.commands",
"watson.migrations",
"watson.templatetags",
],
package_dir = {
"": "src",
},
package_data = {
"watson": [
"locale/*/LC_MESSAGES/django.*",
"templates/watson/*.html",
"templates/watson/includes/*.html",
],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
],
)