-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (84 loc) · 2.11 KB
/
Copy pathpyproject.toml
File metadata and controls
97 lines (84 loc) · 2.11 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "metablate"
version = "0.2.0"
description = "A collection of meteor ablation models"
readme = {file = "README.md", content-type = "text/markdown"}
authors = [
{name = "Daniel Kastinen", email = "[email protected]"},
{name = "Johan Kero", email = "[email protected]"},
]
maintainers = [
{name = "Daniel Kastinen", email = "[email protected]"},
]
license = {file = "LICENSE"}
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Operating System :: Unix",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
]
requires-python = ">=3.9"
dependencies = [
"tqdm",
"scipy",
"numpy>2",
"matplotlib",
"pymsis",
"xarray",
"spacecoords>0.2",
]
[tool.setuptools]
include-package-data = true
license-files = ["LICENSE"]
[tool.setuptools.packages.find]
where = ["src"]
[project.optional-dependencies]
develop = [
"pytest",
"flake8",
"wheel",
"build",
"twine",
"pytest-cov",
"matplotlib",
"ipykernel",
"radon",
"numpydoc",
"pre-commit",
"black",
"auditwheel",
"patchelf",
"mkdocs-material",
"mkdocstrings[python]",
"mkdocs-jupyter",
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mkdocs-section-index",
]
tests = ["pytest", "pytest-cov"]
[project.urls]
Documentation = "https://danielk.developer.irf.se/ablate/"
Repository = "https://github.com/danielk333/ablate"
Homepage = "https://github.com/danielk333/ablate"
Issues = "https://github.com/danielk333/ablate/issues"
[tool.black]
line-length = 100
[tool.mypy]
disallow_untyped_defs = true
follow_untyped_imports = true
warn_unused_ignores = true
packages = ["metablate"]
[tool.ruff]
line-length = 110
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.ruff.lint]
ignore = ["E203","D203","E251","E501","E226"]
[tool.pytest]
addopts = ["-v", "--cov"]
testpaths = ["tests"]