-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (68 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
76 lines (68 loc) · 1.78 KB
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
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["oldest-supported-numpy", "setuptools >= 38.6", "pip >= 10"]
build-backend = "setuptools.build_meta"
[project]
name = "openspace_rvdata"
version = "0.0.1"
license = {file = "LICENSE"}
description = 'Library for generating OpenSpace assets for RV ship trails.'
maintainers = [
{name = "Kristina V. Collins", email = "kvcollins@spacescience.org"}
]
requires-python = ">=3.9"
dependencies = [
"datetime",
"pandas",
"plotly",
"requests"
]
readme = "README.md"
keywords = [
"OpenSpace",
"R2R",
"rvdata",
"research vessel",
"marine",
"cruise",
"lua",
"coordinates",
"observations",
"models",
"analysis",
"instruments",
"mapping",
"visualization",
"plotting",
"Antarctica"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Oceanography",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
]
[project.optional-dependencies]
test = [
"coverage[toml]",
"pylint",
]
[project.urls]
source = "https://github.com/KCollins/openspace_rvdata"
documentation = "https://openspace_rvdata.readthedocs.io/en/latest"
download = "https://github.com/KCollins/openspace_rvdata/releases"
[tool.coverage.run]
relative_files = true
include = ["*/openspace_rvdata/*",
"*/openspace_rvdata/tests/*"]
[tool.coverage.paths]
ocb_paths = ["openspace_rvdata/",
"*/lib/*/site-packages/openspace_rvdata"]
[tool.setuptools]
packages = ["openspace_rvdata"]
[tool.pylint.'MESSAGES CONTROL']
max-line-length = 120
disable = "R0912,R0913,R0914,R0915,R0917,C0103,W0622"