-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
80 lines (73 loc) · 1.59 KB
/
pyproject.toml
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
76
77
78
79
80
[tool.poetry]
name = "useful-machines"
version = "0.0.3"
description = "The python sdk for useful."
license = "MIT"
authors = [
"Leo Scholler <leonardo.scholler@poatek.com>",
"Liam Shalon <liam@levelvc.com>",
"Dev Dabke <dev@levelvc.com>",
]
readme = "README.md"
homepage = "https://github.com/level-vc/useful"
repository = "https://github.com/level-vc/useful.git"
packages = [{ include = "useful" }]
[tool.poetry.dependencies]
python = "^3.9.0,<3.13"
ipython = {extras = ["get-ipython"], version = "^8.5.0"}
nest-asyncio = "^1.5.8"
numpy = [
{version = "<=1.22.0", python = "<3.10"},
{version = "^1.24.0,<=1.26.0", python = ">=3.10"}
]
pandas = [
{ version = "^2.1.4", python = ">=3.10" },
{ version = "<2.1", python = "<3.10" }
]
pydantic = "^2.5.2"
requests = "^2.31.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
boto3 = "^1.33.11"
deptry = "^0.12.0"
ipykernel = "^6.27.1"
pdoc3 = "^0.10.0"
pre-commit = "^3.6.0"
pytest = "~7.1.0"
coverage = { version = "<7.4", python = "<3.10" }
pytest-cov = [
{ version = "^4.1.0", python = ">=3.10" },
{ version = "<4.1.0", python = "<3.10" }
]
ruff = "^0.1.7"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff.lint]
select = [
"B",
"C4",
"D",
"E",
"F",
"I",
"ISC",
"N",
"PGH",
"PL",
"PTH",
"Q",
"S",
"SIM",
"TRY",
"UP",
"W",
"YTT",
"RUF100",
]
ignore = ["D203", "D212", "TRY003"]
[tool.ruff.per-file-ignores]
"test/*.py" = ["S101"]
[tool.ruff.lint.pydocstyle]
convention = "google"