-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 860 Bytes
/
pyproject.toml
File metadata and controls
29 lines (26 loc) · 860 Bytes
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
[tool.poetry]
name = "applaud"
version = "0.9.4"
description = "The Python SDK to work with the App Store Connect API from Apple."
authors = ["Yang.Y <yang@yangyubo.com>"]
readme = "README.md"
homepage = "https://github.com/codinn/applaud"
repository = "https://github.com/codinn/applaud.git"
license = "MIT"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.9"
authlib = "^0.15.5"
pydantic = {extras = ["email"], version = "^1.9.0"}
requests = "^2.27.0"
Deprecated = "^1.2.13"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"