-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
87 lines (77 loc) · 2.03 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[tool.poetry]
name = "gdf_ai"
version = "0.0.0"
description = ""
authors = ["Matthias Hauth <[email protected]>"]
maintainers = [
]
readme = "README.md"
packages = [{include="src"},]
keywords = ["geostatistics", "Machine learning"]
classifiers = [
'Programming Language :: Python :: 3',
'Natural Language :: English',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Hydrology',
]
[tool.poetry.dependencies]
python = "^3.9, <3.11"
gstools = "^1.3.0"
matplotlib = "^3.7.2"
scikit-learn = "^1.3.0"
pandas = "^2.0.3"
[tool.poetry.group.test.dependencies]
pytest = "^7.2.1"
pytest-cov = "^3.0.0"
coverage = "^6.4.4"
teamcity-messages = "^1.32"
[tool.poetry.group.dev.dependencies]
black = "^22.8.0"
isort = "^5.10.1"
commitizen = "^3.0.1"
urllib3 = "1.26.15"
[tool.black]
line-length = 88
target-version = ['py310']
exclude = '''
(
/(
\.git # exclude a few common directories in the
| \.github # root of the project
| \.env
| \.venv
| \.config
| .pytest_cache
| .scannerwork
| .vscode
| site
)/
)
'''
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 88
skip = [".git", ".github", ".env", ".venv", ".config", ".pytest_cache", ".scannerwork", ".vscode", "site"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"externals: marks tests that require of external binaries (deselect with '-m \"not externals\"')",
]
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.0.0"
tag_format = "v$major.$minor.$patch"
changelog_file = "docs/changelog.md"
update_changelog_on_bump = true
version_files= [
"src/__init__.py",
"pyproject.toml:version",]