-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
67 lines (60 loc) · 1.17 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
[project]
name = "osm"
description = "Open Science Metrics (OSM) client for tracking scientific transparency and reproducibility metrics"
readme = "README.md"
requires-python = ">=3.11"
keywords = [
"open science",
"altmetrics",
"scientific transparency",
"reproducibility"
]
dynamic = ["version"]
dependencies = [
"dill",
"pandas",
"pyarrow",
"pydantic",
"pydantic[email]",
"python_on_whales",
"odmantic",
"requests",
]
[project.optional-dependencies]
dev = [
"pdbpp",
"ipython",
"ruff",
"pytest",
]
server = [
"fastapi[standard]",
"uvicorn",
"gunicorn",
]
llm = [
"llama-index",
"llama-index-llms-openai",
"llama-index-program-openai",
"llama-index-llms-openrouter"
]
plot = [
"colorcet",
"panel",
]
[project.urls]
homepage = "https://website"
source = "https://github.com/nimh-dsst/osm"
issues = "https://github.com/nimh-dsst/osm/issues"
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=3.4"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "osm/_version.py"
[tool.setuptools.packages.find]
where = ["."]
[project.scripts]
osm = "osm.cli:main"
[tool.ruff]
line-length = 88
indent-width = 4