-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathpyproject.toml
64 lines (59 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>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "planet"
authors = [ {name = "Planet", email = "[email protected]"} ]
description = "Planet SDK for Python"
dependencies = [
"click>=8.0",
"geojson",
"httpx>=0.28.0",
"jsonschema",
"pyjwt>=2.1",
"tqdm>=4.56",
"typing-extensions",
]
readme = "README.md"
requires-python = ">=3.9"
keywords = ["planet", "api", "sdk", "client"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Topic :: Utilities",
]
license = {file = "LICENSE"}
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest==8.3.3",
"anyio",
"pytest-cov",
"respx>=0.22.0",
]
lint = [
"flake8",
"mypy",
"yapf",
]
docs = [
"mkdocs==1.3",
"mkdocs-click==0.7.0",
"mkdocs-material==8.2.11",
"mkdocstrings==0.18.1",
"mkdocs_autorefs==1.0.1",
]
dev = [
"planet[test, docs, lint]",
]
[project.scripts]
planet = "planet.cli.cli:main"
[project.urls]
Repository = "https://github.com/planetlabs/planet-client-python"
[tool.setuptools_scm]