-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
37 lines (34 loc) · 1.16 KB
/
setup.py
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
35
36
37
#!/usr/bin/env python
# coding: utf-8
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "django-unaccent",
version = "0.1",
author = "Simon Thépot aka djcoin",
author_email = "[email protected]",
description = ("Integration of nice operators to the Django ORM for unaccented search in postgresql"),
license = "BSD",
keywords = "django postgres postgresql orm unaccent",
# url = "",
package_dir = {'': 'src'},
packages = ['django_unaccent'],
long_description=read('README.rst'),
install_requires = [
'django<1.5',
# https://code.djangoproject.com/ticket/16250
'psycopg2<=2.4.1',
],
tests_require = [
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries :: Python Modules",
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)