-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (44 loc) · 1.43 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
[build-system]
requires = ["setuptools >= 61"]
build-backend = "setuptools.build_meta"
[project]
name = "station_bathymetry"
version = "0.1.0"
description = "Plot lat/lon bathymetry at station for oceanographic cruises."
authors = [
{ name="Laura Cimoli", email="lc929@cam.ac.uk" },
{ name="Jack Atkinson", email="jack.atkinson1000@gmail.com" },
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: English",
]
dependencies = [
"netcdf4",
"pandas",
"matplotlib",
"jupyter",
"tqdm",
]
[project.optional-dependencies]
lint = [
"black>=22.12.0",
"pylint",
]
[project.urls]
"Homepage" = "https://github.com/GO-SHIP-Oceanography/station_bathymetry"
"Bug Tracker" = "https://github.com/GO-SHIP-Oceanography/station_bathymetry/issues"
[tool.setuptools]
# By default, include-package-data is true in pyproject.toml, so you do
# NOT have to specify this line.
include-package-data = true
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["", ] # package names should match these glob patterns (["*"] by default)
exclude = [] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)