-
Notifications
You must be signed in to change notification settings - Fork 30
/
pyproject.toml
62 lines (57 loc) · 1.54 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
[build-system]
requires = [
"setuptools >= 48",
"setuptools_scm[toml] >= 6.2",
"setuptools_scm_git_archive",
"wheel >= 0.29.0",
]
build-backend = 'setuptools.build_meta'
[project]
name="seabird"
dynamic = ["version"]
description="Parser for Sea-Bird's CTD and TSG"
readme = "README.rst"
requires-python = ">=3.6"
keywords = ["oceanography", "ocean data", "CTD", "TSG", "SeaBird", "hydrography", "parser"]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering"
]
dependencies = [
"numpy>=1.14",
"Click>=6.6",
]
[project.optional-dependencies]
test = [
"hypothesis >= 6.29.3",
"pytest >= 5.0.0",
"pytest-cov[all]",
"pip >= 9.0.1",
"flake8 >= 3.2.1",
"tox >= 2.3.3",
"coverage >= 4.2",
"pytest >= 3.0.5",
"supportdata >= 0.1.2",
"twine >= 1.8.1",
]
CDF = ["netCDF4>=1.4"]
QC = ["cotede>=0.20.2"]
[project.urls]
repository = "https://github.com/castelao/seabird"
[project.scripts]
"seabird" = "seabird.cli:cli"
[tool.black]
line-length = 88
[tool.setuptools_scm]
write_to = "seabird/version.py"
git_describe_command = "git describe --dirty --tags --long --match 'v*' --first-parent"