-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (37 loc) · 1.22 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
[build-system]
requires = ["setuptools", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "fastnanquantile"
dynamic = ["version"]
readme = "README.md"
description = "A package for fast nanquantile calculation"
keywords = ["GIS", "numpy", "bottleneck", "xarray"]
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
license = {text = "MIT License"}
requires-python = ">=3.8"
dependencies = [
"numba",
"numpy",
]
[project.optional-dependencies]
xarray = ["xarray"]
xarrayparallel = ["xarray[parallel]"]
[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)
include = ["*"] # package names should match these glob patterns (["*"] by default)
#exclude = [] # exclude packages matching these glob patterns (empty by default)
[tool.setuptools_scm] # Automatically set the version number based on git tags
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
line_length = 100