-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.49 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
[tool.poetry]
name = "sequestrae-engine"
version = "0.1.0"
description = "A Biochar Carbon Removal Assessment Engine for evaluating carbon sequestration potential."
authors = ["Du Phan <du-phan@users.noreply.github.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/du-phan/sequestrae-engine"
repository = "https://github.com/du-phan/sequestrae-engine"
keywords = ["biochar", "carbon removal", "assessment", "engine", "sequestration"]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
numpy = ">=1.24,<2.0"
pandas = "^2.0"
pydantic = "^1.10.2"
jsonschema = "^4.16.0"
jupyterlab = "^4.0.5"
[tool.poetry.dev-dependencies]
black = "24.10.0"
isort = "5.13.2"
pre-commit = "4.0.1"
pytest = "^7.1.2"
pytest-cov = "^4.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
target-version = ["py310", "py311", "py312"]
[tool.isort]
profile = "black"
line_length = 100
multi_line_output = 3
include_trailing_comma = true
[tool.pre-commit]
repos = [
{ repo = "https://github.com/psf/black", rev = "24.10.0", hooks = [{ id = "black" }] },
{ repo = "https://github.com/pycqa/isort", rev = "5.13.2", hooks = [{ id = "isort" }] },
{ repo = "https://github.com/pycqa/flake8", rev = "7.1.1", hooks = [{ id = "flake8" }] },
{ repo = "https://github.com/pre-commit/pre-commit-hooks", rev = "v4.0.1", hooks = [
{ id = "trailing-whitespace" },
{ id = "end-of-file-fixer" },
{ id = "check-yaml" }
]}]