forked from JoseRZapata/data-science-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (42 loc) · 1.5 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
[tool.poetry]
name = "data-science-project-template"
version = "0.1.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 = ["Jose R. Zapata <https://joserzapata.github.io/>"]
repository = "https://github.com/JoseRZapata/data-science-project-template"
documentation = "https://joserzapata.github.io/data-science-project-template/"
homepage = "https://joserzapata.github.io/"
license = "MIT"
readme = "README.md"
keywords = ["data-science","cookiecutter", "poetry"]
classifiers = [
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python",
]
package-mode = false
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.7.1"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.0"
mkdocs-material = "^9.5.27"
mkdocstrings = {extras = ["python"], version = "^0.25.1"}
pymdown-extensions = "^10.8"
[tool.poetry.group.test.dependencies]
pytest = "^8.2.2"
pytest-cov = "^5.0.0"
pytest-cookies = "^0.7.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.virtualenvs]
in-project = true
[tool.pytest.ini_options]
testpaths = ["tests"]