-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (38 loc) · 1.04 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
[project]
name = "rslearn_projects"
version = "0.0.1"
description = "rslearn projects at Ai2"
authors = [
{name = "Favyen Bastani", email = "favyenb@allenai.org"},
{name = "Patrick Beukema", email = "patrickb@allenai.org"},
{name = "Henry Herzog", email = "henryh@allenai.org"},
{name = "Yawen Zhang", email = "yawenz@allenai.org"},
{name = "Mike Jacobi", email = "mikej@allenai.org"},
]
readme = "README.md"
requires-python = ">=3.10"
dynamic = ["dependencies"]
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["rslp*"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.ruff]
fix = true
[tool.ruff.lint]
extend-select = ["D", "I", "UP"]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["D"]
"convert_satlas_webmercator_to_rslearn/**" = ["D"]
"amazon_conservation/**" = ["D"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.pytest.ini_options]
testpaths = [
"tests",
]
addopts = [
"--import-mode=importlib",
]