-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 820 Bytes
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 820 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 = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "omnifold"
version = "0.0.1"
authors = [
{ name = "EpiGenomicsCode" }
]
description = "OmniFold: An HPC Protein Ensemble Prediction CLI. Runs AlphaFold3, Boltz, and Chai-1."
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
dependencies = [
"pyfastx",
"PyYAML",
"pydantic",
"requests",
"pandas",
"pyarrow",
"numpy",
"biopython",
"plotly",
"jinja2",
"tqdm"
]
[project.scripts]
omnifold = "omnifold.cli:main"
[project.urls]
"Homepage" = "https://github.com/EpiGenomicsCode/OmniFold"
"Repository" = "https://github.com/EpiGenomicsCode/OmniFold"
[tool.setuptools.packages.find]
where = ["."]
include = ["omnifold*"]
exclude = ["tests*"]