-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
43 lines (35 loc) · 1.05 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
38
39
40
41
42
43
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import re
from setuptools import setup
with open('README.rst') as f:
long_description = f.read()
with open('citext/__init__.py') as f:
version = re.search(r'__version__ = \'(.*?)\'', f.read()).group(1)
setup(
name='sqlalchemy-citext',
version=version,
description="A sqlalchemy plugin that allows postgres use of CITEXT.",
long_description=long_description,
author=', '.join([
'Mahmoud Abdelkader',
'Davide Setti',
]),
url='https://github.com/mahmoudimus/sqlalchemy-citext',
install_requires=[
'SQLAlchemy>=0.6',
],
test_suite='tests',
license='BSD',
setup_requires=[],
zip_safe=False,
packages=['citext'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)