generated from ACCESS-NRI/template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
66 lines (54 loc) · 1.41 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[project]
# Metadata
name = "meorg_client"
description = "An API client for interacting with modelevaluation.org."
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache 2.0 License",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Operating System :: OS Independent"
]
readme = "README.md"
license = {file="LICENSE"}
# Get the version dynamically (i.e. from git)
dynamic = ["version"]
# Dependencies
requires-python = ">=3.9"
dependencies = [
"requests>=2.31.0",
"requests-mock>=1.11.0",
"PyYAML>=6.0.1",
"click>=8.1.7",
"pandas>=2.2.2",
"tqdm>=4.66.5"
]
authors = [
{name = "ACCESS-NRI", email = "[email protected]"}
]
[project.urls]
source-code = "https://github.com/CABLE-LSM/meorg_client"
# CLI
[project.scripts]
meorg = "meorg_client.cli:cli"
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=64",
"versioneer[toml]==0.29"
]
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.dynamic]
version = {attr = "meorg_client.__version__"}
# [tool.setuptools_scm]
# fallback_version = "9999"
# # version = {attr = "meorg.__version__"}
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "meorg_client/_version.py"
versionfile_build = "meorg_client/_version.py"
tag_prefix = ""
parentdir_prefix = "meorg_client-"