-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
64 lines (55 loc) · 1.4 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
[build-system]
requires = ["setuptools>=60", "wheel", "setuptools_scm[toml]>=8.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "intake_satpy/version.py"
[tool.isort]
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
profile = "black"
skip_gitignore = true
default_section = "THIRDPARTY"
known_first_party = "intake_satpy"
line_length = 120
skip = [".gitignore", "intake_satpy/version.py"]
[tool.black]
line-length = 120
exclude = '''
(
\.git
| build
| dist
| intake_satpy/version\.py
)
'''
[tool.mypy]
python_version = "3.10"
[project]
name = "intake_satpy"
description = "Intake drivers using Satpy to read and manipulate data"
readme = "README.md"
keywords = ["intake", "pytroll", "satpy"]
license = {text = "GPLv3"}
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.8"
dependencies = [
"intake",
"intake-xarray",
"satpy",
]
dynamic = ["version"]
[project.optional-dependencies]
tests = [
"pytest",
]
[tool.setuptools]
packages = ["intake_satpy"]
[project.entry-points."intake.drivers"]
satpy = "intake_satpy.generic:SatpySource"