-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 824 Bytes
/
pyproject.toml
File metadata and controls
39 lines (36 loc) · 824 Bytes
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
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"
[project]
name = "insightfold"
version = "0.1.0"
description = "InsightFold – Variants v1"
readme = "README.md"
requires-python = ">=3.10,<3.13"
license = { text = "Apache-2.0" }
authors = [{ name = "Maxim Tsenkov" }]
dependencies = [
"pandas>=2,<3",
"requests>=2.31,<3",
"ipywidgets>=8,<9",
"gemmi>=0.6,<1",
"biopython>=1.83,<2",
"scipy>=1.11,<2",
"networkx>=3,<4",
"plotly>=5,<7",
"matplotlib>=3.10.7",
"seaborn>=0.13,<1",
"molviewspec>=0.1",
"ipykernel>=6,<8",
"jupyter>=1.1",
"pandas-stubs~=2.3.3",
]
[tool.hatch.build.targets.wheel]
packages = ["src/insightfold", "src/pdbe_interfaces"]
[tool.hatch.build.targets.sdist]
include = [
"src/insightfold/**",
"README.md",
"LICENSE",
"pyproject.toml",
]