-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
74 lines (66 loc) · 1.96 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
"""
Quart-Motor
-------------
Async MongoDB support for Quart applications.
Quart-Motor is pip-installable:
$ pip install Quart-Motor
Source code is hosted on `GitHub <https://github.com/marirs/quart-motor>`_.
Contributions are welcome!
"""
from setuptools import find_packages, setup
tests_require = [
'coverage>=4.5',
'coveralls>=1.8',
'codecov>=2.1.7',
'pytest>=5.2',
'pytest-cov>=2.8',
'pytest-asyncio>=0.14.0',
'pytest-pep8>=1.0',
'pydocstyle>=4.0',
]
extras_require = {
'tests': tests_require,
}
extras_require['all'] = [req for exts, reqs in extras_require.items()
for req in reqs]
setup_requires = [
'pytest-runner>=5.2',
]
with open('README.md') as f:
long_description = f.read()
setup(
name="Quart-Motor",
version='2.4.5',
url="https://www.github.com/marirs/quart-motor/",
download_url="https://www.github.com/marirs/quart-motor/tags",
license="BSD",
author="Sriram G",
author_email="[email protected]",
description="Motor support for Quart applications",
long_description=long_description,
long_description_content_type='text/markdown',
zip_safe=False,
packages=find_packages(),
install_requires=[
"PyMongo>=3.10",
"Quart>=0.18.0",
"motor>=2.1.0",
"six",
"werkzeug"
],
classifiers=[
"Environment :: Web Environment",
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Unix",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules"
],
python_requires='>=3.6',
)