-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (56 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
58 lines (56 loc) · 1.62 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
[project]
name = "fairscape-mds"
version = "0.1.0"
description = "FAIR data repository server"
readme = "README.md"
authors = [
{ name = "Max Levinson", email = "mal8ch@virginia.edu"},
{ name = "Sadnan Al Manir", email = "sadnanalmanir@gmail.com"},
{ name = "Tim Clark", email = "twc8q@virginia.edu"}
]
license = {file= "LICENSE"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3"]
keywords = ["fairscape", "reproducibility", "fair"]
dependencies = [
"fairscape_models>=1.0.27",
"fastapi>=0.109.0",
"uvicorn>=0.27.0",
"requests>=2.31.0",
"minio>=7.2.3",
"python-multipart>=0.0.6",
"docker>=7.0.0",
"jinja2>=3.1.3",
"pyjwt>=2.8.0",
"requests-toolbelt>=1.0.0",
"celery[redis]>=5.3.6",
"boto3>=1.34.26",
"python-dotenv>=1.0.1",
"ipykernel>=6.29.0",
"sqids>=0.4.1",
"boto3>=1.34.26",
"pydantic>=2.5.1",
"rdflib>=6.3.2",
"httpx>=0.28.1",
"pytest>=8.3.5",
"pydantic-settings>=2.8.1",
"PyPDF2>=3.0.0",
"google-genai>=1.0.0",
"werkzeug>=3.0.0",
"pandas>=2.3.3",
"pandasql>=0.7.3",
"logfire[celery,fastapi]>=4.15.1",
"PyYaml==6.0.1",
"PyGithub",
]
requires-python = ">=3.9"
[project.urls]
Homepage = "https://fairscape.github.io"
[tool.pytest.ini_options]
pythonpath = [
"mds/src",
]
log_cli = true
log_level = "INFO"