File: setup.py

package info (click to toggle)
python-django-djapian 2.3.1-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 196 kB
  • ctags: 342
  • sloc: python: 1,413; makefile: 2
file content (34 lines) | stat: -rw-r--r-- 724 bytes parent folder | download
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
#!/usr/bin/env python

from distutils.core import setup

setup(
    name="Djapian",
    version="2.3.1",

    license="New BSD License",

    author='Alex Koshelev, Rafael "SDM" Sierra',
    author_email="daevaorn@gmail.com",

    url="http://code.google.com/p/djapian/",

    packages=[
        "djapian",
        "djapian.utils",
        "djapian.tests",
        "djapian.management",
        "djapian.management.commands"
    ],
    package_dir={
        "djapian": "src/djapian"
    },

    description="High-level Xapian full-text indexer integration for Django",

    classifiers=[
        "Framework :: Django",
        "License :: OSI Approved :: BSD License",
        "Topic :: Text Processing :: Indexing"
    ]
)