forked from julienmalard/traDSSAT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (40 loc) · 1 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
[project]
name = "tradssat"
version = "0.1.9"
description = "DSSAT input and output file reader and writer"
authors = [
{name = "Julien Malard-Adam", email = "[email protected]"},
{name = "श्रेया संजय यादव", email = "[email protected]"},
]
dependencies = [
"numpy>=1.26.2",
"pandas>=2.1.4",
"chardet>=5.2.0",
]
requires-python = ">=3.10,<4.0"
readme = "README.md"
license = {text = "MIT"}
classifiers = ["Programming Language :: Python :: 3 :: Only", "License :: OSI Approved :: MIT License"]
[tool.coverage.paths]
source = ["src"]
[tool.coverage.run]
branch = true
source = ["tradssat"]
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
"pytest<8.0.0,>=7.4.2",
"pytest-subtests<1.0.0,>=0.11.0",
"coverage[toml]<8.0.0,>=7.3.2",
]
test = [
"pytest>=7.4.3",
"pytest-subtests>=0.11.0",
"coverage>=7.3.3",
"pytest-cov>=4.1.0",
]
[tool.pdm.build]
includes = []
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"