-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
89 lines (75 loc) · 1.94 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[build-system]
requires = ["setuptools",
"wheel"]
[project]
name = "mestolo"
version = "0.0.2"
dependencies = [
"click",
"toml"
]
requires-python = ">=3.9"
authors = [
{name = "J. Marcus Hughes", email = "[email protected]"},
]
maintainers = [
{name = "J. Marcus Hughes", email = "[email protected]"}
]
description = "TODO"
readme = "TODO"
license = {file = "TODO"}
keywords = ["TODO"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[project.optional-dependencies]
test = ["pytest", "pytest-doctestplus", "pytest-cov", "ruff", "coverage", "freezegun"]
docs = ["sphinx", "sphinx-autoapi", "sphinx-automodapi", "pydata-sphinx-theme", "sphinx-favicon", "ipython"]
[project.scripts]
mestolo = "mestolo.cli:main"
[project.urls]
#Homepage = "https://example.com"
#Documentation = "https://readthedocs.org"
Repository = "https://github.com/jmbhughes/mestolo.git"
"Bug Tracker" = "https://github.com/jmbhughes/mestolo/issues"
#Changelog = "https://github.com/punch-mission/thuban/blob/main/CHANGELOG.md"
[tool.setuptools]
packages = ["mestolo"]
[tool.codespell]
skip = "*.fts,*.fits,venv,*.pro,*.asdf,*.ipynb"
[tool.ruff]
target-version = "py39"
line-length = 120
exclude=[
".git,",
"__pycache__",
"build",
"mestolo/version.py",
]
show-fixes = true
lint.select = [
"E",
"F",
"W",
"UP",
"PT",
"RET",
"TID",
]
[tool.ruff.lint.per-file-ignores]
# Part of configuration, not a package.
"setup.py" = ["INP001"]
"conftest.py" = ["INP001"]
# implicit-namespace-package. The examples are not a package.
"docs/*.py" = ["INP001"]
# Module level imports do not need to be at the top of a file here
"docs/conf.py" = ["E402"]
"__init__.py" = ["E402", "F401", "F403"]
"test_*.py" = ["B011", "D", "E402", "PGH001", "S101"]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.pytest.ini_options]
markers = [
"slow: a slow test to normally skip in CI",
]