-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
57 lines (53 loc) · 1.25 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tidyms"
version = "0.7.0"
description = "Tools for working with MS data in metabolomics"
authors = [
{ name = "Gabriel Riquelme" },
]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Medical Science Apps."
]
dependencies = [
"beautifulsoup4>=4.11.2",
"bokeh>=3.0",
"Cerberus>=1.3",
"dill>=0.3.6",
"ipython>=8.1",
"joblib>=1.1",
"matplotlib>=3.5.1",
"natsort>=8.2.0",
"networkx>=3.0",
"numpy>=1.22",
"openpyxl>=3.0",
"pandas>=1.5.3",
"plotnine>=0.10.1",
"requests",
"scikit-learn>=1.0.2",
"scipy>=1.8",
"seaborn>=0.11",
"statsmodels>=0.13",
"tqdm>=4.0",
"umap-learn>=0.5.3",
"xlrd>=2.0"
]
requires-python = ">=3.9"
[project.urls]
Homepage = "https://github.com/griquelme/tidyms"
[tool.mypy]
python_version = "3.9"
files = ["src/tidyms"]
[tool.pytest.ini_options]
pythonpath = [
".", "./src"
]