-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
50 lines (43 loc) · 1.13 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
50
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.backends.legacy:build"
[project]
name = "gnosis-analytics"
version = "1.0.0"
description = "GNOSIS Analytics — end-to-end data analysis: preprocessing, statistical testing, machine learning, and automated PDF report generation."
readme = "README.md"
license = { file = "LICENSE.md" }
authors = [{ name = "Spilios Dimakopoulos" }]
requires-python = ">=3.9"
dependencies = [
"pandas>=2.0.0",
"numpy>=1.24.0",
"scikit-learn>=1.3.0",
"scipy>=1.11.0",
"matplotlib>=3.7.0",
"seaborn>=0.12.0",
"requests>=2.31.0",
"chardet>=5.0.0",
"openpyxl>=3.1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.5.0",
]
[project.scripts]
gnosis-analytics = "gnosis_analytics.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 100
target-version = ["py39"]
[tool.ruff]
line-length = 100
select = ["E", "F", "W", "I"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--cov=gnosis_analytics --cov-report=term-missing"