-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (32 loc) · 982 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (32 loc) · 982 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "activitysmith"
version = "1.11.0"
description = "Official ActivitySmith Python SDK"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "ActivitySmith", email = "adam@activitysmith.com" }]
keywords = ["activitysmith", "live activities", "push notifications", "api", "sdk"]
dependencies = [
"urllib3>=1.25.3",
"python-dateutil>=2.8.2",
"pydantic>=2",
]
[project.optional-dependencies]
dev = [
"pytest>=7",
"ruff>=0.5",
]
[project.urls]
homepage = "https://activitysmith.com"
documentation = "https://activitysmith.com/docs"
source = "https://github.com/ActivitySmithHQ/activitysmith-python"
issues = "https://github.com/ActivitySmithHQ/activitysmith-python/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["activitysmith*", "activitysmith_openapi*"]