-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.14 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ws3"
dynamic=["version"]
description = "A Python framework for forest estate modeling and wood supply simulation"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
dependencies = [
"numpy>=1.21",
"pandas>=1.3",
"scipy>=1.7",
"matplotlib",
"rasterio",
"fiona",
"profilehooks",
"dill",
"highspy"
]
authors = [
{name = "Gregory Paradis", email = "gregory.paradis@ubc.ca"}
]
maintainers = [
{name = "Kathleen Coupland", email = "kathleen.coupland@ubc.ca"},
{name = "Elaheh Ghasemi", email = "elaheh.ghasemi@ubc.ca"},
{name = "Salar Ghotb", email = "salar.ghotb@ubc.ca"}
]
[project.optional-dependencies]
cbm = ["libcbm"] # pip users can `pip install ws3[cbm]`
gurobi = ["gurobipy"]
pulp = ["pulp"]
[tool.hatch.version]
source = "code"
path = "ws3/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["ws3"]
[tool.hatch.build]
include = [
"ws3",
"README.md",
"LICENSE"
]
[tool.hatch.publish.index.test]
url = "https://test.pypi.org/legacy/"
[tool.hatch.envs.default.scripts]
clean = "rm -rf dist/ build/ *.egg-info"