-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 950 Bytes
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 950 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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
author = "Ciencia de Datos • GECI"
author-email = "ciencia.datos@islas.org.mx"
classifiers = [ "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",]
home-page = "https://github.com/IslasGECI/seabird_sampling"
requires = [
"distdens",
"fastkml",
"geci_plots",
"geci-test-tools",
"pandas-stubs",
"scikit-learn-stubs",
"scikit-learn",
"scipy-stubs",
]
module = "seabird_sampling"
requires-python=">=3.10"
[tool.flit.scripts]
muestreo-aves-marinas-ipbc = "seabird_sampling.cli:cli"
seabird-sampling = "seabird_sampling.cli:cli"
[[tool.mypy.overrides]]
module = [
"distdens.models",
"distdens",
"geci_plots",
"geci_test_tools",
"geoambiental.io",
"geoambiental",
"utm",
]
ignore_missing_imports = true
[tool.mutmut]
paths_to_mutate = [ "seabird_sampling/" ]