forked from juliotrigo/sqlalchemy-filters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (48 loc) · 1.54 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
44
45
46
47
48
49
50
51
52
53
# -*- coding: utf-8 -*-
import os
from codecs import open
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst'), 'r', 'utf-8') as handle:
readme = handle.read()
setup(
name='basis-sqlalchemy-filters',
version='0.9.0',
description='A library to filter SQLAlchemy queries.',
long_description=readme,
author='Student.com',
author_email='wearehiring@student.com',
url='https://github.com/Overseas-Student-Living/sqlalchemy-filters',
packages=find_packages(exclude=['test', 'test.*']),
install_requires=[
'sqlalchemy>=1.0.16',
'six>=1.10.0',
'funcsigs>=1.0.2'
],
extras_require={
'dev': [
'pytest==3.0.5',
'flake8==3.2.1',
'coverage==4.3.1',
'sqlalchemy-utils==0.32.12',
],
'mysql': [
'mysql-connector-python-rf==2.1.3',
]
},
zip_safe=True,
license='Apache License, Version 2.0',
classifiers=[
"Programming Language :: Python",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
]
)