forked from NGEET/tools-fates-landusedata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (47 loc) · 1.16 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
[project]
name = "landusedata"
version = "0.0.0"
requires-python = ">= 3.8"
authors = [
{ name = "Gregory Lemieux", email = "glemieux@lbl.gov" },
]
description = "Python package to processing Land Use Harmonization data for use with FATES"
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Framework :: Pytest",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering"
]
dependencies = [
"xesmf", # p2c: -c conda-forge
"netcdf4", # p2c: -c conda-forge
]
[project.optional-dependencies]
test = [
"pytest", # p2c: -c conda-forge
]
lint = [
"flake8", # p2c: -c conda-forge
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = "src"
testpaths = "tests"
addopts = [
"--import-mode=importlib",
"--verbose",
"--color=yes",
]
[project.scripts]
fates-landusedata = "landusedata._main:main"