-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (53 loc) · 1.77 KB
/
pyproject.toml
File metadata and controls
57 lines (53 loc) · 1.77 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "git-metadata-extractor"
version = "1.0.0"
description = "This project is designed to classify imaging software repositories and extract relevant information using AI models."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [
{ name = "Quentin Chappuis", email = "quentin.chappuis@epfl.ch" },
{ name = "Robin Franken", email = "robin.franken@epfl.ch" },
{ name = "Carlos Vivar Rios", email = "carlos.vivarrios@epfl.ch" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"fastapi==0.115.13",
"uvicorn[standard]==0.34.3",
"gimie==0.7.2",
"pydantic==2.11.7",
"python-dotenv==0.21.1",
"requests==2.32.4",
"openai==1.91.0",
"tiktoken==0.9.0",
"google-genai==0.1.0",
"repo-to-text==0.7.0",
"PyLD==2.0.4",
"rdflib==6.2.0",
"rdflib-jsonld==0.6.2",
"PyYAML==6.0.2",
"selenium==4.34.2",
"beautifulsoup4==4.13.4",
"aiohttp==3.12.15",
"uvicorn-worker==0.3.0"
]
[project.urls]
Homepage = "https://imaging-plaza.epfl.ch"
Repository = "https://github.com/Imaging-Plaza/git-metadata-extractor"
Issues = "https://github.com/Imaging-Plaza/git-metadata-extractor/issues"
[project.scripts]
# This assumes your CLI entry point is a function named 'main' in src/main.py
llm-finder = "src.main:main"