forked from meteofrance/py4cast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (32 loc) · 1.01 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "py4cast"
version = "1.0.0"
authors = [
{name="Météo-France and contributors"},
]
description = "Library to train a variety of Neural Network architectures on various weather forecasting datasets."
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache 2",
"Operating System :: OS Independent",
]
dynamic = ["dependencies"]
license = {file = "LICENSE-2.0.txt"}
keywords = ["PyTorch", "Deep Learning", "Artificial Intelligence", "Meteo-France"]
[tool.setuptools.packages.find]
namespaces = false
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.urls]
Homepage = "https://github.com/meteofrance/py4cast"
[tool.sourcery-analytics]
[tool.sourcery-analytics.thresholds]
method_length = 58
method_cyclomatic_complexity = 22
method_cognitive_complexity = 34
method_working_memory = 45