-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
50 lines (45 loc) · 1.08 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=69.0.3", "setuptools_scm>=8.0.4"]
build-backend = "setuptools.build_meta"
[project]
name = "borzoi"
description = "borzoi"
authors = [
{name = "David Kelley", email = "[email protected]"},
{name = "Johannes Linder", email = "[email protected]"}
]
readme = "README.md"
classifiers = ["License :: OSI Approved :: Apache License"]
dynamic = ["version"]
requires-python = ">=3.9"
dependencies = [
"h5py~=3.10.0",
"intervaltree~=3.1.0",
"joblib~=1.1.1",
"matplotlib~=3.7.1",
"google-cloud-storage~=2.0.0",
"natsort~=7.1.1",
"networkx~=2.8.4",
"numpy~=1.24.3",
"pandas~=1.5.3",
"pybigwig~=0.3.18",
"pybedtools~=0.10.0",
"pysam~=0.22.0",
"qnorm~=0.8.1",
"seaborn~=0.12.2",
"scikit-learn~=1.2.2",
"scipy~=1.9.1",
"tensorflow~=2.15.0",
"tqdm~=4.65.0",
"pyfaidx~=0.7.1",
"pyranges~=0.0.129",
]
[project.optional-dependencies]
dev = [
"black~=23.12.1",
"pytest~=7.4.4",
"ruff~=0.1.11",
]
[project.urls]
Homepage = "https://github.com/calico/borzoi"
[tool.setuptools_scm]