-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (44 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
47 lines (44 loc) · 1.41 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
[project]
name = "d2spy"
version = "0.4.3"
license = "MIT"
description = "Python package for interacting with a Data to Science instance."
authors = [
{ name = "Jinha Jung", email = "jinha@purdue.edu" },
{ name = "Minyoung Jung", email = "jung411@purdue.edu" },
{ name = "Ben Hancock", email = "hancocb@purdue.edu" },
]
readme = "README.md"
keywords = ["python", "data to science", "uas"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.9,<3.15"
dependencies = ["requests>=2.31.0"]
[project.optional-dependencies]
geo = ["rasterio>=1.3.11", "geopandas>=1.0.1", "exifread>=3.0.0"]
all = ["rasterio>=1.3.11", "geopandas>=1.0.1", "exifread>=3.0.0"]
[dependency-groups]
test = ["pytest>=7.4.4", "requests-mock>=1.11.0", "pre-commit>=3.8.0"]
docs = [
"mkdocstrings[python]>=0.24.3",
"mkdocs-material>=9.5.11",
"mkdocs-jupyter>=0.24.7",
]
dev = [
"jupyter>=1.0.0",
"notebook>=7.1.3",
"types-requests>=2.32.0.20240712",
"black>=24.8.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"