-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (49 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
53 lines (49 loc) · 1.21 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
[project]
name = "osendowment-model"
version = "0.1.0"
description = "Value and risk metrics analysis for open-source funding decisions"
license = "Apache-2.0"
requires-python = ">=3.13"
authors = [
{ name = "Open Source Endowment Foundation" },
]
maintainers = [
{ name = "Konstantin Vinogradov", email = "konstantin@endowment.dev" },
{ name = "Vlad-Stefan Harbuz", email = "vlad@vlad.website" },
{ name = "Jonathan Starr", email = "jon@endowment.dev" },
]
dependencies = [
"aiohttp>=3.13.3",
"anthropic>=0.97.0",
"cognitive-complexity>=1.3.0",
"git-pandas>=2.3.0",
"httpx[http2]>=0.28.1",
"lizard>=1.22.1",
"multimetric>=2.4.4",
"networkx>=3.6.1",
"polars>=1.39.3",
"psycopg[binary]>=3.3.3",
"pydantic>=2.11.7",
"python-dotenv>=1.2.2",
"pyyaml>=6.0.3",
"requests>=2.32.5",
"rich>=14.3.3",
"scipy>=1.17.1",
"semgrep>=1.161.0",
]
[dependency-groups]
dev = [
"pytest-asyncio>=1.3.0",
"pytest>=9.0.2",
"ruff>=0.11.12",
"pandas>=3.0.1",
"tqdm>=4.67.3",
"pytest-cov>=7.1.0",
]
[tool.ruff]
line-length = 120
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[tool.pytest.ini_options]
asyncio_mode = "auto"