-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (39 loc) · 1003 Bytes
/
pyproject.toml
File metadata and controls
42 lines (39 loc) · 1003 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
40
41
42
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mindhunter"]
dependencies = [
"faker>=37.8.0",
"matplotlib>=3.10.6",
"numpy>=2.3.3",
"pandas>=2.3.3",
"seaborn>=0.13.2",
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"scipy>=1.10.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "--cov=src/mindhunter --cov-report=term-missing"
[project]
name = "mindhunter"
version = "0.1.1"
description = "DataFrame extensions for data analysis."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"faker>=37.8.0",
"matplotlib>=3.10.6",
"numpy>=2.3.3",
"pandas>=2.3.3",
"seaborn>=0.13.2",
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"scipy>=1.10.0",
"statsmodels>=0.14.5",
"patsy>=1.0.1",
]
authors =[
{ "name" = "Sebastian Torres Sagredo (Framebuffer(s))", "email" = " 26495556+Framebuffers@users.noreply.github.com" } ]