-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (35 loc) · 937 Bytes
/
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
[project]
name = "DSCALE"
description = "Downscaling Scenarios to the Country level for Assessment of Low carbon Emissions"
dynamic = ["version"]
authors = [
{name = "Fabio Sferra", email = "[email protected]"},
{name = "Florian Maczek", email = "[email protected]"},
{name = "Philip Hackstock", email = "[email protected]"},
]
requires-python = ">=3.7"
dependencies = [
"pandas",
"numpy",
"matplotlib",
"scipy",
"pyyaml",
"joblib",
"psutil",
"pycountry",
"alive-progress",
"openpyxl",
"xlrd",
"seaborn"
]
[project.optional-dependencies]
tests = ["pytest<8", "pytest-lazy-fixture"]
dev = ["mypy", "black >= 22"]
pandas-performance = ["numexpr==2.6.2", "bottleneck==1.2.1"]
[tool.setuptools]
packages = ["downscaler"]
[tool.setuptools_scm]
write_to = "downscaler/_version.py"
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=67", "setuptools_scm[toml]>=7.1"]