mirror of
https://github.com/Hopiu/django-watson.git
synced 2026-03-16 22:00:22 +00:00
45 lines
1.4 KiB
Python
45 lines
1.4 KiB
Python
import os
|
|
from distutils.core import setup
|
|
|
|
|
|
setup(
|
|
name = "django-watson",
|
|
version = "1.1.7",
|
|
description = "Full-text multi-table search application for Django. Easy to install and use, with good performance.",
|
|
long_description = open(os.path.join(os.path.dirname(__file__), "README.markdown")).read(),
|
|
author = "Dave Hall",
|
|
author_email = "dave@etianen.com",
|
|
url = "http://github.com/etianen/django-watson",
|
|
zip_safe = False,
|
|
packages = [
|
|
"watson",
|
|
"watson.management",
|
|
"watson.management.commands",
|
|
"watson.migrations",
|
|
"watson.south_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",
|
|
'Programming Language :: Python :: 2.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3.2',
|
|
'Programming Language :: Python :: 3.3',
|
|
"Framework :: Django",
|
|
],
|
|
)
|