forked from Starlitnightly/Epiverse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (36 loc) · 1.14 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
[build-system]
requires = ["setuptools", "wheel", "flit_core >=3.4,<4","Cython"]
build-backend = "flit_core.buildapi"
[project]
name = "Epiverse"
version = "0.0.2"
description = "EpiVerse: A single pipeline for exploring the entire epigenomics universe"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
{name = "Lei Hu", email = "[email protected]"},
{name = "Zehua Zeng", email = "[email protected]"},
]
keywords = ["bioinformatics", "deep-learning", "single-cell", "ATAC-seq"]
classifiers = [
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
dependencies = [
'omicverse>=1.4.13',
'muon>=0.1',
'pyBigWig>=0.3',
'loompy>=3.0.7',
'pyrange',
]
[project.urls]
Github = 'https://github.com/DBinary/Epiverse'
[tool.flit.sdist]
exclude = [".*", "d*", "e*", "pa*", "s*", "t*"]