django-watson/setup.py

44 lines
1.3 KiB
Python
Raw Normal View History

2012-02-06 13:31:25 +00:00
from distutils.core import setup
setup(
name = "django-watson",
2014-02-19 10:37:57 +00:00
version = "1.1.3",
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",
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",
"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",
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
2012-02-06 13:31:25 +00:00
"Framework :: Django",
],
)