-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (74 loc) · 2.24 KB
/
Copy pathpyproject.toml
File metadata and controls
86 lines (74 loc) · 2.24 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
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = ["setuptools>=75.0.0", "wheel>=0.38", "build"]
build-backend = "setuptools.build_meta"
[project]
name = "Carbon-Module"
version = "1.1.2"
authors = [{name = "Tomke Honkomp", email = "tomke.honkomp@thuenen.de"}]
description = "The C-Module tracks global carbon stocks and stock changes across pools of the forestry sector, displaying them interactively"
readme = "README.md"
license = "AGPL-3.0-or-later"
license-files = ["COPYING"]
keywords = ["forestry", "climate change", "carbon accounting", "land use change", "climate change mitigation", "wood products", "forest sector modelling"]
requires-python = ">=3.9"
dependencies = [
"click==8.1.7",
"coverage==7.6.3",
"DateTime==5.5",
"dash==3.0.0",
"dash-bootstrap-components==2.0.0",
"numpy==1.26.4",
"openpyxl==3.1.5",
"pandas==1.5.3",
"pathlib==1.0.1",
"plotly==6.0.1",
"seaborn==0.13.2",
"selenium==4.2.0",
"tqdm==4.67.1",
"tomli==2.0.2",
"typing==3.7.4.3"
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: Microsoft :: Windows",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering"
]
[project.urls]
Homepage = "https://github.com/TI-Forest-Sector-Modelling"
Documentation = "https://placeholder.com"
Repository = "https://github.com/TI-Forest-Sector-Modelling/C-Module"
Issues = "https://github.com/TI-Forest-Sector-Modelling/C-Module/issues"
[project.scripts]
run_cmodule = "c_module.cli.cli:cli"
[tool.setuptools]
include-package-data = true
zip-safe = true
[tool.setuptools.packages]
find = { include = ["c_module*"] }
[tool.setuptools.package-data]
"c_module" = ["data/input/**/*"]
[tool.coverage.report]
fail_under = 50
show_missing = true
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.:",
]
[tool.coverage.run]
branch = true
include = ["c_module/*"]
command_line = "-m unittest discover -s test"
omit = [
"c_module/logic/visualisation.py"
]
[project.optional-dependencies]
dev = [
"dash[testing]",
"coverage",
"webdriver-manager"
]