forked from earthlab/firedpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 1.1 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=80"
]
[project]
name = "firedpy"
dynamic = ["version", "dependencies"]
description = "The Fire Event Delineation Model Python Package"
readme = "README.md"
authors = [
{name="Adam Mahood", email="admahood@duck.com"},
{name="Travis Williams"},
{name="Lise St. Denis"},
{name="Maxwell Cook"},
{name="Ellie Lindrooth"},
{name="Nate Hofford"},
{name="Kyle Manley"},
{name="Maxwell Joseph"},
{name="Erick Verleye"}
]
license = "MIT"
keywords = ["FIRED", "firedpy", "fire", "wildfire"]
requires-python = ">=3.12"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14"
]
[tool.setuptools.packages]
find = {include = ["firedpy*"]}
[tool.setuptools.dynamic]
version = {attr = "firedpy.__version__"}
[tool.setuptools.package-data]
firedpy = ["data/**"]
[project.scripts]
firedpy = "firedpy.cli:cli"