-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
88 lines (78 loc) · 1.71 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[project]
name = "dplutils"
dynamic = ["version"]
authors = [
{name = "Scientifc Software Engineering Center at JHU", email = "ssec@jhu.edu"},
]
description = ""
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.10,<3.12" # prob can relax the lower limit...
dependencies = [
"pandas",
"numpy",
"ray[data]>=2.10",
"pyarrow",
"networkx",
]
[project.optional-dependencies]
dev = [
"bandit>=1.7",
"build",
"pytest",
"pytest-cov",
"ruff",
"tox"
]
docs = [
"sphinx",
"sphinx_book_theme",
"sphinx-automodapi",
"sphinx-issues",
"nbsphinx"
]
[project.urls]
homepage = "https://dplutils.readthedocs.io/en/latest"
documentation = "https://dplutils.readthedocs.io/en/latest"
repository = "https://github.com/ssec-jhu/dplutils"
[build-system]
requires = ["setuptools>=61.2", "setuptools_scm[toml]>=7"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["dplutils"]
zip-safe = false
include-package-data = true
[tool.setuptools_scm]
write_to = "dplutils/_version.py"
[tool.ruff]
line-length = 120
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"docs",
"node_modules",
"venv",
]
lint.ignore = [
"COM812", # https://docs.astral.sh/ruff/rules/missing-trailing-comma/
"ISC001", # https://docs.astral.sh/ruff/rules/single-line-implicit-string-concatenation/
]
target-version = "py311"
[tool.ruff.lint.pydocstyle] # https://docs.astral.sh/ruff/settings/#lint_pydocstyle_convention
convention = "google"