paypal_rest/setup.cfg
2021-03-31 16:46:43 -04:00

65 lines
1.2 KiB
INI
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[metadata]
name = paypal_rest
version = 1.0.4
author = Software Freedom Conservancy
author_email = info@sfconservancy.org
description = Library to access PayPals REST API
license = GNU AGPLv3+
license_file = LICENSE.txt
long_description = file: README.rst
long_description_content_type = text/x-rst; charset=UTF-8
project_urls =
Documentation = %(url)s
Source = %(url)s
url = https://k.sfconservancy.org/NPO-Accounting/paypal_rest
[bdist_wheel]
universal = 1
[mypy]
disallow_any_unimported = False
disallow_untyped_calls = False
disallow_untyped_defs = True
show_error_codes = True
strict_equality = True
warn_redundant_casts = True
warn_return_any = False
warn_unreachable = True
warn_unused_configs = True
[options]
include_package_data = True
install_requires =
iso8601>=0.1
oauthlib>=2.0
pyxdg>=0.2
PyYAML>=3.0
requests>=2.0
requests-oauthlib>=1.0
packages = find:
python_requires = >=3.6
[options.entry_points]
console_scripts =
paypal-query = paypal_rest.cliquery:entry_point
[options.packages.find]
exclude =
tests
[testenv]
deps =
mypy>=0.770
pytest>=3.0
pytest-mypy
commands =
pytest
pytest --mypy paypal_rest
[tool:pytest]
filterwarnings =
ignore::DeprecationWarning:^socks$
[tox:tox]
envlist = py36,py37