forked from albert-labs/albert-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (67 loc) · 1.75 KB
/
pyproject.toml
File metadata and controls
75 lines (67 loc) · 1.75 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "albert"
description = "The official Python SDK for the Albert Invent platform."
authors = [{ name = "Albert Invent", email = "support@albertinvent.com" }]
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
]
keywords = ["SDK", "API", "Albert", "Python"]
dynamic = ["version"]
requires-python = ">=3.10"
dependencies = [
"requests>=2.32.3,<3",
"pandas>=2.2.2,<3",
"pydantic[email]>=2.8.2,<3",
"pyjwt>=2.10.0,<3",
"tenacity>=8.2.3",
]
[dependency-groups]
dev = [
"pytest>=8.3.2",
"jupyter>=1.1.1",
"ruff>=0.8.1",
"mkdocs>=1.5.3",
"mkdocs-material>=9.5.10",
"mkdocstrings>=0.29.1",
"mkdocstrings-python>=1.16.12",
"mkdocs-gen-files>=0.5.0",
"mkdocs-literate-nav>=0.6.0",
"griffe-pydantic>=1.1.2",
"mike>=2.1.3",
"pre-commit>=4.2.0",
]
[project.urls]
Homepage = "https://www.albertinvent.com/"
Documentation = "https://docs.developer.albertinvent.com/albert-python"
Repository = "https://github.com/albert-labs/albert-python"
Issues = "https://github.com/albert-labs/albert-python/issues"
[tool.hatch.version]
path = "src/albert/__init__.py"
[tool.ruff]
target-version = "py310"
extend-exclude = [".circleci", ".vscode"]
line-length = 99
indent-width = 4
[tool.ruff.lint]
select = [
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
[tool.ruff.lint.isort]
known-first-party = ["albert", "tests"]