-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 841 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (33 loc) · 841 Bytes
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
[project]
name = "atopos"
version = "1.0.0"
description = "Bioinformatics data analysis and visualization toolkit"
authors = [{ name = "生信探索 BioQuest", email = "yehior@qq.com" }]
readme = "README.md"
requires-python = ">=3.9"
dependencies=[
"numpy>1.19.5",
"pandas>1.5",
"matplotlib>3",
"scikit-learn>1.0",
"scipy>1.6.0",
"joblib>1.2.0",
"threadpoolctl>3.1.0",
"bioinfokit>2",
"matplotlib-venn>0.11",
"seaborn>0.10"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/ScienceAdvances/atopos"
[tool.setuptools]
packages = ["atopos"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"