forked from centerofci-archive/sqlalchemy-filters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (47 loc) · 1.64 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
# -*- 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='sqlalchemy-filters',
version='0.13.0',
description='A library to filter SQLAlchemy queries.',
long_description=readme,
long_description_content_type='text/x-rst',
author='Student.com',
author_email='[email protected]',
url='https://github.com/aeronet/sqlalchemy-filters',
packages=find_packages(exclude=['test', 'test.*']),
install_requires=['sqlalchemy>=1.4'],
extras_require={
'dev': [
'pytest>=4.6.9',
'coverage~=5.0.4',
'sqlalchemy-utils~=0.37.0',
'flake8',
'restructuredtext-lint',
'Pygments',
],
'mysql': ['mysql-connector-python==8.0.29'],
'postgresql': ['psycopg2==2.9.3'],
},
zip_safe=True,
license='Apache License, Version 2.0',
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)