-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
52 lines (45 loc) · 1.64 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
# pyproject.toml tells “frontend” build tools like pip and build what “backend” tool to use
# to create distribution packages for your project
[build-system]
requires = [
"setuptools>=45",
"wheel",
"setuptools_scm[toml]>=6.2",
"setuptools_scm_git_archive",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
fallback_version = "999"
write_to = "virtualargofleet/_version_setup.py"
[project]
dynamic = ["version", "optional-dependencies"]
name = "VirtualFleet"
license = {file = "LICENSE"}
readme = "README.md"
description = "``Virtual Fleet`` is a Python package to compute and analyse simulations of virtual Argo float trajectories."
requires-python = ">=3.8"
authors = [
{name = "K. Balem", email = "[email protected]" },
{name = "G. Maze", email = "[email protected]" }
]
maintainers = [
{name = "K. Balem", email = "[email protected]" },
{name = "G. Maze", email = "[email protected]" }
]
# Classifiers help users find your project by categorizing it.
# For a list of valid classifiers, see https://pypi.org/classifiers/
classifiers = [ # Optional
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
# Indicate who your project is intended for
"Intended Audience :: Science/Research",
# Pick your license as you wish
"License :: OSI Approved :: Apache Software License",
# Specify the Python versions you support here. In particular, ensure
# that you indicate you support Python 3. These classifiers are *not*
# checked by "pip install". See instead "python_requires" below.
"Programming Language :: Python :: 3.8",
]