зеркало из https://github.com/microsoft/asconnect.git
59 строки
1.3 KiB
TOML
59 строки
1.3 KiB
TOML
[tool.poetry]
|
|
name = "asconnect"
|
|
version = "5.0.0"
|
|
description = "A wrapper around the Apple App Store Connect APIs"
|
|
|
|
license = "MIT"
|
|
|
|
authors = [
|
|
"Dale Myers <dalemy@microsoft.com>"
|
|
]
|
|
|
|
readme = 'README.md'
|
|
|
|
repository = "https://github.com/microsoft/asconnect"
|
|
homepage = "https://github.com/microsoft/asconnect"
|
|
|
|
keywords = ['apple', 'app store', 'itunes', 'connect']
|
|
|
|
classifiers = [
|
|
'Development Status :: 5 - Production/Stable',
|
|
'Environment :: Console',
|
|
'Environment :: MacOS X',
|
|
'Intended Audience :: Developers',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.8',
|
|
'Programming Language :: Python :: 3.9',
|
|
'Programming Language :: Python :: 3.10',
|
|
'Programming Language :: Python :: 3.11',
|
|
'Topic :: Software Development',
|
|
'Topic :: Utilities'
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
cryptography = ">=40,<43"
|
|
deserialize = "^2.0.1"
|
|
pyjwt = "^2.6.0"
|
|
requests = "^2.28.2"
|
|
tenacity = "^8.2.2"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "24.3.0"
|
|
mypy = "1.9.0"
|
|
pylint = "3.1.0"
|
|
pytest = "^8.1.1"
|
|
pytest-cov = "^4.1.0"
|
|
pytest-dependency = "^0.5.1"
|
|
types-requests = "^2.28.11.16"
|
|
|
|
[[tool.mypy.overrides]]
|
|
module = [
|
|
"deserialize"
|
|
]
|
|
ignore_missing_imports = true
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|