-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (44 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
49 lines (44 loc) · 1.06 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
49
[build-system]
requires = ["setuptools >= 61.0", "setuptools_scm[toml]>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "modifinder"
dynamic = ["version"]
authors = [
{ name = "Reza Shahneh", email = "mzare008@ucr.edu" },
]
description = "ModiFinder package"
dependencies = [
"cairosvg",
"rdkit",
"requests",
"xlsxwriter",
"prettytable",
"dash",
"numpy",
"tqdm",
"IPython",
"furl",
"pandas",
"dash-bootstrap-components",
"pillow",
"openpyxl",
"openpyxl-image-loader",
"msbuddy",
"seaborn",
"pyteomics",
"matplotlib",
"networkx",
]
requires-python = ">=3.9"
readme = "Readme.md"
license = {file = "LICENSE.md"}
[project.optional-dependencies]
extras = [] # Define optional dependencies here if needed
[project.urls]
Documentation = "https://wang-bioinformatics-lab.github.io/ModiFinder_base/"
Repository = "https://github.com/Wang-Bioinformatics-Lab/ModiFinder_base"
[tool.setuptools.packages]
find = {include = ["modifinder"]}
[tool.setuptools_scm]
write_to = "modifinder/_version.py"