-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
45 lines (40 loc) · 1.35 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
[project]
name = 'corigami'
version = '0.0.1'
description = 'C.Origami: cell type-specific chromatin structure prediction.'
readme = 'README.md'
keywords = ['deep learning', 'chromatin', 'prediction', 'cell type-specific', 'epigenetics']
authors = [{ name = 'Jimin Tan', email = '[email protected]' },
{ name = 'Nina Shenker-Tauris', email = '[email protected]' }]
maintainers = [{ name = 'Jimin Tan', email = '[email protected]' },
{ name = 'Nina Shenker-Tauris', email = '[email protected]' }]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
dependencies = [
'torch>=1.12.0',
'pandas>=1.3.0',
'matplotlib>=3.3.2',
'omegaconf>=2.1.1',
'tqdm>=4.64.0',
'pybigwig==0.3.18',
]
requires-python = ">=3.9"
[project.optional-dependencies]
training = [
'pytorch-lightning==1.5.8',
'lightning-bolts==0.5.0',
'scikit-image>=0.19.3',
]
[project.urls]
Homepage = 'https://github.com/tanjimin/C.Origami'
Repository = 'https://github.com/tanjimin/C.Origami'
[project.scripts]
corigami-predict = 'corigami.inference.prediction:main'
corigami-edit = 'corigami.inference.editing:main'
corigami-screen = 'corigami.inference.screening:main'
corigami-train= 'corigami.training.main:main'
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"