-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
67 lines (63 loc) · 1.58 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
63
64
65
66
67
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "scintillometry"
version = "1.0.5"
authors = [
{ name="Scintillometry Contributors", email="" },
]
description = "Analyse data & 2D flux footprints from Scintec's BLS scintillometers."
readme = "README.md"
requires-python = ">=3.8"
license = "Apache-2.0"
classifiers = [
"Private :: Do Not Upload",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 4 - Beta",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Environment :: Console",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = [
"pandas >= 2.0",
"tqdm > 4.8",
"scipy >= 1.10",
"mpmath >= 1.2.1",
"numpy",
"scikit-learn",
"matplotlib",
"kneed",
]
[project.optional-dependencies]
tests=[
"pytest >= 7.0",
"pytest-dependency >= 0.5",
"coverage >= 7.1",
]
docs=[
"sphinx",
"sphinx-rtd-theme >= 1.1",
]
dev=[
"scintillometry[tests,docs]",
"hatchling >= 1.12",
"build >= 0.7",
"pylint >= 2.16.1",
"flake8 >= 6.0",
"black >= 23.1",
"isort",
]
[project.urls]
"Homepage" = "https://github.com/gampnico/scintillometry"
"Bug Tracker" = "https://github.com/gampnico/scintillometry/issues"
"Documentation" = "https://scintillometry.readthedocs.io/en/latest/"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]