-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 810 Bytes
/
pyproject.toml
File metadata and controls
34 lines (29 loc) · 810 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
30
31
32
33
34
# Copyright (c) 2025 Apple Inc. Licensed under MIT License.
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "app-store-server-library"
version = "3.0.0"
description = "The App Store Server Library"
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "MIT"}
requires-python = ">=3.7, <4"
classifiers = [
"License :: OSI Approved :: MIT License"
]
dependencies = [
"attrs>=21.3.0",
"PyJWT>=2.6.0,<3",
"requests>=2.28.0,<3",
"cryptography>=40.0.0",
"pyOpenSSL>=23.1.1",
"asn1==3.2.0",
"cattrs>=23.1.2",
]
[project.optional-dependencies]
async = ["httpx"]
[tool.setuptools]
packages = {find = {exclude = ["tests"]}}
[tool.setuptools.package-data]
appstoreserverlibrary = ["py.typed"]