-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
39 lines (34 loc) · 984 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
[build-system]
requires = [
"setuptools>=45",
"setuptools_scm>=7",
"tomli>=1.0.0; python_version < '3.11'",
]
build-backend = "setuptools.build_meta"
[project]
name = "pyxpcm"
authors = [
{name = "Guillaume Maze", email = "gmaze@ifremer.fr"},
]
description = "pyxpcm: Ocean Profile Classification Model"
dynamic = ["version", "dependencies"]
license = {text = "GPLv3"}
classifiers = [
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
]
requires-python = ">=3.6"
[project.urls]
home = "http://github.com/obidam/pyxpcm"
[tool.setuptools]
packages = ["pyxpcm"]
zip-safe = false
include-package-data = true
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
readme = {file = ["README.md"]}
[tool.setuptools_scm]
write_to = "pyxpcm/_version.py"
write_to_template = "__version__ = '{version}'"