-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 991 Bytes
/
Copy pathpyproject.toml
File metadata and controls
52 lines (46 loc) · 991 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = [
"setuptools>=82.0.1,<83; python_version < '3.10'",
"setuptools>=84.0.0; python_version >= '3.10'",
]
build-backend = "setuptools.build_meta"
[project]
name = "passkit-python-quickstart"
version = "1.0.0"
description = "Runnable examples for the PassKit Python gRPC SDK"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
license-files = ["LICENSE"]
dependencies = [
"cryptography>=50.0.1,<51",
"passkit-python-grpc-sdk==1.1.162",
"python-dotenv>=1.1,<2",
]
[project.optional-dependencies]
dev = ["ruff>=0.13,<1"]
[project.scripts]
passkit-quickstart = "main:main"
[tool.setuptools]
packages = [
"coupons",
"event_tickets",
"flights",
"membership",
"quickstarts",
"quickstarts.workflows",
]
py-modules = ["main"]
[tool.ruff]
line-length = 100
target-version = "py39"
exclude = [
"constants.py",
"coupons",
"flights",
"membership",
"quickstart-all.py",
"shared",
]
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]