forked from billion-token-one-task/Deepgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1.28 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "deepgraph"
version = "0.1.0"
description = "Open scientific opportunity mapping from literature, evidence tables, and plain-language domain briefs."
readme = "README.md"
license = "MIT"
requires-python = ">=3.12"
authors = [
{ name = "DeepGraph contributors" }
]
dependencies = [
"flask>=3.0",
"httpx>=0.27",
"pydantic>=2.0",
"pymupdf>=1.24",
]
keywords = ["knowledge-graph", "science", "literature-mining", "arxiv", "research-ideas", "open-science"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.urls]
Homepage = "https://github.com/billion-token-one-task/Deepgraph"
Repository = "https://github.com/billion-token-one-task/Deepgraph.git"
[project.scripts]
deepgraph = "main:main"
[tool.setuptools]
include-package-data = true
py-modules = ["config", "main"]
[tool.setuptools.packages.find]
include = ["agents*", "db*", "ingestion*", "orchestrator*", "web*"]
[tool.setuptools.package-data]
db = ["schema.sql"]
web = ["templates/*.html", "static/css/*.css", "static/js/*.js"]