2020-04-06 21:39:52 +00:00
|
|
|
[metadata]
|
|
|
|
name = sprockets-postgres
|
2020-04-06 21:47:50 +00:00
|
|
|
version = file: VERSION
|
2020-04-06 21:39:52 +00:00
|
|
|
description = An asynchronous Postgres client and mixin for Tornado applications
|
|
|
|
long_description = file: README.rst
|
|
|
|
long_description_content_type = text/x-rst; charset=UTF-8
|
|
|
|
license = BSD 3-Clause License
|
|
|
|
license-file = LICENSE
|
|
|
|
home-page = https://github.com/sprockets/sprockets-postgres
|
|
|
|
project_urls =
|
|
|
|
Bug Tracker = https://github.com/sprockets/sprockets-postgres/issues
|
|
|
|
Documentation = https://sprockets-postgres.readthedocs.io
|
|
|
|
Source Code = https://github.com/sprockets/sprockets-postgres/
|
|
|
|
classifiers =
|
2021-01-08 19:55:25 +00:00
|
|
|
Development Status :: 4 - Beta
|
2020-04-06 21:39:52 +00:00
|
|
|
Intended Audience :: Developers
|
|
|
|
License :: OSI Approved :: BSD License
|
|
|
|
Natural Language :: English
|
|
|
|
Operating System :: OS Independent
|
|
|
|
Programming Language :: Python :: 3
|
|
|
|
Programming Language :: Python :: 3.7
|
|
|
|
Programming Language :: Python :: 3.8
|
2021-01-08 23:29:11 +00:00
|
|
|
Programming Language :: Python :: 3.9
|
2020-04-06 21:39:52 +00:00
|
|
|
Topic :: Communications
|
|
|
|
Topic :: Internet
|
|
|
|
Topic :: Software Development
|
|
|
|
Typing :: Typed
|
|
|
|
requires-dist = setuptools
|
|
|
|
keywords =
|
|
|
|
postgres
|
|
|
|
python3
|
|
|
|
tornado
|
|
|
|
|
|
|
|
[options]
|
|
|
|
include_package_data = True
|
|
|
|
install_requires =
|
|
|
|
aiopg>=1.0.0,<2
|
2020-06-02 15:32:44 +00:00
|
|
|
aiodns>=2,<3
|
2020-04-06 21:39:52 +00:00
|
|
|
sprockets.http>=2.1.1,<3
|
|
|
|
tornado>=6,<7
|
2020-04-10 20:26:18 +00:00
|
|
|
py_modules =
|
2020-04-06 21:39:52 +00:00
|
|
|
sprockets_postgres
|
|
|
|
zip_safe = true
|
|
|
|
|
|
|
|
[options.extras_require]
|
|
|
|
testing =
|
2020-06-02 15:26:07 +00:00
|
|
|
asynctest
|
2020-04-06 21:39:52 +00:00
|
|
|
coverage
|
|
|
|
flake8
|
|
|
|
flake8-comprehensions
|
|
|
|
flake8-deprecated
|
|
|
|
flake8-import-order
|
|
|
|
flake8-print
|
|
|
|
flake8-quotes
|
|
|
|
flake8-rst-docstrings
|
|
|
|
flake8-tuple
|
|
|
|
pygments
|
2020-09-16 23:57:01 +00:00
|
|
|
tornado-problem-details
|
2020-04-06 21:39:52 +00:00
|
|
|
|
|
|
|
[coverage:run]
|
|
|
|
branch = True
|
|
|
|
command_line = -m unittest discover tests --verbose
|
|
|
|
data_file = build/.coverage
|
|
|
|
|
|
|
|
[coverage:report]
|
|
|
|
show_missing = True
|
|
|
|
include =
|
2020-04-06 22:24:38 +00:00
|
|
|
sprockets_postgres.py
|
2020-04-06 21:39:52 +00:00
|
|
|
|
|
|
|
[coverage:html]
|
|
|
|
directory = build/coverage
|
|
|
|
|
|
|
|
[coverage:xml]
|
|
|
|
output = build/coverage.xml
|
|
|
|
|
|
|
|
[flake8]
|
|
|
|
application-import-names = sprockets_postgres,tests
|
|
|
|
exclude = build,docs,env
|
|
|
|
import-order-style = pycharm
|
|
|
|
rst-roles = attr,class,const,data,exc,func,meth,mod,obj,ref,yields
|