-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
66 lines (53 loc) · 1.46 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
65
66
[project]
name = "hybig-py"
dynamic = ["dependencies", "version"]
authors = [
{name="Matt Savoie", email="savoie@colorado.edu"},
{name="Owen Littlejohns", email="owen.m.littlejohns@nasa.gov"},
]
maintainers = [
{name="Matt Savoie", email="savoie@colorado.edu"},
{name="Owen Littlejohns", email="owen.m.littlejohns@nasa.gov"},
]
description = "Python package designed to produce browse imagery compatible with NASA's Global Image Browse Services (GIBS)."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/nasa/harmony-browse-image-generator"
Issues = "https://github.com/nasa/harmony-browse-image-generator/issues"
[build-system]
requires = ["hatchling", "hatch-requirements-txt"]
build-backend = "hatchling.build"
[tool.hatch.metadata.hooks.requirements_txt]
files = [
"pip_requirements.txt",
"pip_requirements_skip_snyk.txt"
]
[tool.hatch.version]
path = "docker/service_version.txt"
pattern= '^v?(?P<version>.*)$'
[tool.hatch.build.targets.sdist]
include = [
"hybig/*.py"
]
exclude = [
".*",
]
[tool.hatch.build.targets.wheel]
packages=["hybig"]
[tool.ruff]
lint.select = [
"E", # pycodestyle
"F", # pyflakes
"UP", # pyupgrade
"I", # organize imports
]
[tool.ruff.format]
quote-style = "single"
[tool.ruff.lint.pydocstyle]
convention = "google"