-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (52 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
62 lines (52 loc) · 1.42 KB
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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "planet_overlap"
version = "0.1.0"
description = "Tools for analyzing planetary overlap and spatial relationships."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "Brianna Lind" }
]
keywords = ["geospatial", "planetary science", "overlap", "analysis"]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"numpy>=1.23",
# Add other runtime deps explicitly here
]
[project.optional-dependencies]
dev = [
"pytest>=7",
"pytest-cov",
"flake8",
"black",
"mypy",
]
[project.urls]
Homepage = "https://github.com/BriannaLind/planet_overlap"
Repository = "https://github.com/BriannaLind/planet_overlap"
[project.scripts]
planet_overlap = "planet_overlap.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 88
[tool.flake8]
max-line-length = 88
extend-ignore = ["E203", "W503"]
[tool.pytest.ini_options]
addopts = "--strict-markers --disable-warnings"
testpaths = ["tests"]