forked from IAMconsortium/nomenclature
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (42 loc) · 1.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
46
47
48
49
[tool.poetry]
name = "nomenclature-iamc"
authors = ["Scenario Services team, ECE program, IIASA"]
version = "0.0.0"
description = "Package for managing codelists & attributes for IAMC-format datasets"
license = "APACHE-2.0"
readme = "README.md"
packages = [{include = "nomenclature"}]
[tool.poetry.dependencies]
python = ">=3.10, <3.13"
click = ">= 8"
pyam-iamc = "^2.1"
openpyxl = "^3.1.2"
pydantic = "^2"
PyYAML = "^6.0.1"
pandas = ">=1.5.2"
pycountry = "23.12.11" # pin to guard against "silent" changes in country names
pysquirrel = "^1.1"
gitpython = "^3.1.40"
numpy = "^1.23.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.6.2"
mypy = "^1.7.1"
flake8 = "^6.1.0"
pytest = "^7.4.3"
coverage = "^7.3.3"
[tool.poetry.group.docs.dependencies]
sphinx = "^7.2.6"
sphinx-click = "^5.1.0"
numpydoc = "^1.6.0"
[tool.poetry.scripts]
nomenclature = 'nomenclature.cli:cli'
[tool.poetry-dynamic-versioning]
bump = true
enable = true
style = "pep440"
vcs = "git"
[tool.flake8]
max_line_length = 88
[build-system]
build-backend = "poetry_dynamic_versioning.backend"
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]