-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
47 lines (37 loc) · 1.04 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
#https://stackoverflow.com/questions/75408641/whats-difference-between-tool-poetry-and-project-in-pyproject-toml
[tool.poetry]
name = "sentieon_cli"
version = "1.1.0"
description = "entry point for sentieon command-line tools"
authors = ["Don Freed <[email protected]>", "Brent <[email protected]>"]
readme = "README.md"
classifiers = [
"Development Status :: 5 — Production/Stable",
'License :: OSI Approved :: BSD 2-Clause "Simplified License" (BSD-2-Clause)',
"Programming Language :: Python :: 3",
]
include = ["LICENSE"]
[tool.poetry.dependencies]
python = "^3.8"
argh = "^0.29.4"
colorlog = "^6.7.0"
importlib-resources = "^5.0"
packaging = "^23.2"
[tool.poetry.scripts]
sentieon-cli = "sentieon_cli:main"
[tool.mypy]
ignore_missing_imports = true
[tool.black]
line-length = 79
[tool.poetry.group.dev.dependencies]
pytest = "^7.0.0"
black = "*"
flake8 = "*"
mypy = "*"
[tool.poetry.group.test.dependencies]
pytest = "^7.0.0"
black = "*"
mypy = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"