-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
48 lines (43 loc) · 1.16 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "arch3d"
version = "0.1.0"
requires-python = ">=3.8"
authors = [
{name = "Nicholas Galioto", email = "ngalioto@umich.edu"},
]
description = "A foundation model for global genome architecture."
readme = "README.md"
license = {file = "LICENSE"}
dependencies = [
"torch",
"lightning",
"PyYAML",
"numpy>=1.9,<2",
"scipy",
"pandas",
"cooler",
"h5py",
"tqdm",
"pybloom-live",
"scikit-learn",
"joblib",
"wandb",
]
keywords = ["arch3d", "biology", "digital biology", "foundation model", "Hi-C", "genome architecture", "global genome architecture"]
classifiers = [
"Programming Language :: Python",
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
[project.urls]
Homepage = "https://rajapakse.lab.medicine.umich.edu/"
Repository = "https://github.com/ngalioto/arch3d"
[tool.setuptools.packages.find]
include = ["digitalcell*"]