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"
]
)
|