-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
42 lines (35 loc) · 1.04 KB
/
pyproject.toml
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
[tool.poetry]
name = "google-pay-token-decryption"
version = "0.1.0"
description = "Python package to verify and decrypt Google Pay tokens"
authors = ["Yoyo Wallet <[email protected]>"]
maintainers = ["Yoyo Wallet <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/yoyowallet/google-pay-token-decryption"
repository = "https://github.com/yoyowallet/google-pay-token-decryption"
keywords = ["google pay"]
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
]
packages = [
{ include = "google_pay_token_decryption" }
]
[tool.poetry.dependencies]
python = "^3.8"
cryptography = "^3.4.7"
[tool.poetry.dev-dependencies]
bump2version = "^1.0.1"
pre-commit = "^2.13.0"
pytest = "^6.2.4"
black = "^21.7b0"
mypy = "^0.910"
flake8 = "^3.9.2"
pytest-cov = "^2.12.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"