2012-02-06 13:31:25 +00:00
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
|
name = "django-watson",
|
2012-07-19 16:24:11 +00:00
|
|
|
version = "1.1.1",
|
2012-02-06 13:31:25 +00:00
|
|
|
description = "Full-text multi-table search application for Django. Easy to install and use, with good performance.",
|
2012-07-19 16:27:11 +00:00
|
|
|
long_description = open("README.markdown").read(),
|
2012-02-06 13:31:25 +00:00
|
|
|
author = "Dave Hall",
|
|
|
|
|
author_email = "dave@etianen.com",
|
|
|
|
|
url = "http://github.com/etianen/django-watson",
|
2012-07-19 16:24:11 +00:00
|
|
|
download_url = "http://github.com/downloads/etianen/django-watson/django-watson-1.1.1.tar.gz",
|
2012-02-06 13:31:25 +00:00
|
|
|
zip_safe = False,
|
|
|
|
|
packages = [
|
|
|
|
|
"watson",
|
|
|
|
|
"watson.management",
|
|
|
|
|
"watson.management.commands",
|
|
|
|
|
"watson.migrations",
|
2012-07-20 06:24:57 +00:00
|
|
|
"watson.templatetags",
|
2012-02-06 13:31:25 +00:00
|
|
|
],
|
|
|
|
|
package_dir = {
|
|
|
|
|
"": "src",
|
|
|
|
|
},
|
|
|
|
|
package_data = {
|
|
|
|
|
"watson": [
|
|
|
|
|
"locale/*/LC_MESSAGES/django.*",
|
|
|
|
|
"templates/watson/*.html",
|
2013-05-01 15:34:33 +00:00
|
|
|
"templates/watson/includes/*.html",
|
2012-02-06 13:31:25 +00:00
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
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",
|
|
|
|
|
],
|
2013-05-01 15:34:33 +00:00
|
|
|
)
|