-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (58 loc) · 1.52 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = [ "setuptools>=41", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true
[project]
name = "chromatinhd"
authors = [
{name = "Wouter Saelens", email = "wouter.saelens@gmail.com"},
]
description = "High-definition modeling of (single-cell) chromatin + transcriptomics data"
requires-python = ">=3.8"
keywords = ["bioinformatics", "chromatin accessibility", "transcriptomics"]
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"torch", # --extra-index-url https://download.pytorch.org/whl/cu113
"torch-scatter", # --find-links https://data.pyg.org/whl/torch-1.12.1+cu113.html
"scanpy",
"matplotlib",
"numpy",
"seaborn",
"Cython",
"fisher",
"diskcache",
"appdirs",
"xarray",
"pysam",
]
dynamic = ["version", "readme"]
license = {text = "MIT"}
[project.urls]
"Homepage" = "https://github.com/DeplanckeLab/ChromatinHD"
"Bug Tracker" = "https://github.com/DeplanckeLab/ChromatinHD/issues"
[tool.setuptools.dynamic]
readme = {file = "README.md", content-type = "text/markdown"}
[project.optional-dependencies]
dev = [
"pre-commit",
"pytest",
"coverage",
"black",
"pylint",
"jupytext",
"pytest",
"statsmodels",
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
"mkdocs-jupyter",
"mike",
"cairosvg", # for mkdocs social
"pillow", # for mkdocs social
"setuptools_scm"
# "faiss-cpu",
]
[tool.setuptools_scm]