-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 1.11 KB
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
[project]
name = "behavioralsignals"
version = "0.3.0"
description = "Python SDK for Behavioral Signals API"
readme = "README.md"
authors = []
requires-python = ">=3.10"
license = { file = "LICENSE" }
keywords = []
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License"
]
dependencies = [
"grpcio>=1.64.0",
"protobuf>=6.31.1",
"pydantic>=2.11.7",
"pydub>=0.25.1",
"requests>=2.32.4",
"audioop-lts; python_version >= '3.13'"
]
[project.optional-dependencies]
dev = [
"grpcio-tools>=1.64.0",
"ruff",
]
[project.urls]
Repository = "https://github.com/BehavioralSignalTechnologies/behavioralsignals-python"
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]