-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
35 lines (31 loc) · 1014 Bytes
/
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
#!/usr/bin/env python
import os
from setuptools import setup
BASE = os.path.dirname(__file__)
README_PATH = os.path.join(BASE, 'README.rst')
CHANGES_PATH = os.path.join(BASE, 'CHANGES.rst')
long_description = '\n\n'.join((
open(README_PATH).read(),
open(CHANGES_PATH).read(),
))
setup(
name='django-tsvector-field',
version='0.9.5',
url='https://github.com/damoti/django-tsvector-field',
license='BSD',
description='Django field implementation for PostgreSQL tsvector.',
long_description=long_description,
author='Lex Berezhny',
author_email='[email protected]',
keywords='django,postgres',
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=['tsvector_field'],
)