-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (65 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
73 lines (65 loc) · 1.55 KB
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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "RuFaS"
version = "1.0.0"
description = "Ruminant Farm Systems Model"
readme = "README.md"
license = "GPL-3.0-only"
authors = [
{"name" = "RuFaS Team", "email" = "contact@rufas.org"},
]
requires-python = ">=3.12, <3.14"
dependencies = [
"matplotlib>=3.10.0",
"numpy==2.2.0",
"pandas>=2.2.3",
"scipy>=1.15.1",
"typing_extensions>=4.12.2",
"salib==1.5.1",
"tqdm>=4.67.1",
"deepdiff>=8.2.0",
"psutil>=6.1.1",
"numba>=0.61.0",
]
[project.optional-dependencies]
build_docs = [
"sphinx==9.1.0",
"sphinxawesome-theme>=5.3.2",
]
dev = [
"black>=25.1.0",
"flake8>=7.1.1",
"mypy>=1.15.0",
"coverage>=7.6.11",
"pytest==7.4.4",
"pytest-mock>=3.14.0",
"pytest-lazy-fixture>=0.6.3",
"freezegun>=1.5.1",
"sphinx==9.1.0",
"sphinxawesome-theme>=5.3.2",
]
[project.urls]
Homepage = "https://rufas.org"
Repository = "https://github.com/RuminantFarmSystems/RuFaS"
Documentation = "https://ruminantfarmsystems.github.io/RuFaS/"
[tool.setuptools]
packages = ["RUFAS"]
[tool.black]
target-version = ["py312"]
line-length = 120
[tool.mypy]
python_version = "3.12"
ignore_missing_imports = true
strict_optional = true
disallow_untyped_defs = true
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
show_column_numbers = true
strict = true
exclude = ['^(?!.*(?:RUFAS|tests|main\.py|setup\.py)).*$']
follow_imports = "silent"
[tool.pytest.ini_options]
testpaths = ["tests"]