-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.23 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
[project]
name = "data-science-project-template"
version = "0.2.0"
description = "A modern template for data science projects with all the necessary tools for experiment, development, testing, and deployment. From notebooks to production."
authors = [
{name = "Jose R. Zapata", email = "https://joserzapata.github.io/"},
]
requires-python = ">=3.9"
keywords = [
"data-science",
"cookiecutter",
"poetry",
]
readme = "README.md"
license = {text = "MIT"}
dependencies = [
"pre-commit>=4.0.1",
"pytest>=8.3.4",
"pytest-cookies>=0.7.0",
"pytest-cov>=6.0.0",
]
[project.urls]
homepage = "https://joserzapata.github.io/"
repository = "https://github.com/JoseRZapata/data-science-project-template"
documentation = "https://joserzapata.github.io/data-science-project-template/"
[dependency-groups]
dev = [
"pre-commit>=4.0.1",
"pytest>=8.3.4",
"pytest-cookies>=0.7.0",
"pytest-cov>=6.0.0",
]
docs = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.5.49",
"mkdocstrings[python]>=0.27.0",
"pymdown-extensions>=10.13",
]
[tool.uv]
package = false
default-groups = [
"dev",
"docs",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
testpaths = ["tests"]