This repository has been archived by the owner on Sep 14, 2022. It is now read-only.
generated from sco1/py-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (60 loc) · 1.67 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
67
[tool.poetry]
name = "Scan Splitter"
version = "1.2.1"
description = "Split composite scan files into separate landmark & measurement files"
authors = ["sco1 <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/sco1/"
repository = "https://github.com/sco1/scan-splitter"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Typing :: Typed",
]
packages = [{include = "src"},]
[tool.poetry.scripts]
scansplitter = "src.ui:scansplitter_cli"
[tool.poetry.dependencies]
python = "^3.9"
rich = "^10.2"
typer = "^0.3"
[tool.poetry.dev-dependencies]
black = "^21.6b0"
bump2version = "^1.0"
flake8 = "^3.8"
flake8-annotations = "^2.6"
flake8-bugbear = "^21.4"
flake8-docstrings = "^1.5"
flake8-fixme = "^1.1"
flake8-import-order = "^0.18"
flake8-tidy-imports = "^4.1"
mypy = "^0.910"
pep8-naming = "^0.12"
pre-commit = "^2.7"
pytest = "^6.0"
pytest-check = "^1.0"
pytest-cov = "^2.10"
pytest-mock = "^3.6"
[tool.black]
line-length = 100
[tool.mypy]
disallow_incomplete_defs = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
ignore_missing_imports = true
no_implicit_optional = true
show_error_codes = true
warn_redundant_casts = true
warn_return_any = true
warn_unused_configs = true
warn_unused_ignores = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"