-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
107 lines (95 loc) · 2.45 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "punchpipe"
dynamic = ["version"]
dependencies = [
"click",
"ccsdspy",
"punchbowl",
"prefect[sqlalchemy]",
"pymysql",
"pandas",
"xlrd",
"pydantic",
"sqlalchemy",
"dash",
"dash-bootstrap-components",
"coolname",
"numpy",
"plotly",
"pyyaml",
"click",
"pylibjpeg[libjpeg]",
"psutil"
]
requires-python = ">=3.11"
authors = [
{name = "J. Marcus Hughes", email = "[email protected]"},
]
maintainers = [
{name = "J. Marcus Hughes", email = "[email protected]"}
]
description = "PUNCH mission's data reduction pipeline"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["TODO"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[project.optional-dependencies]
test = ["pre-commit",
"hypothesis",
"pytest",
"coverage",
"pytest-cov",
"pytest-mock-resources[mysql]",
"freezegun",
"ruff"]
docs = ["packaging",
"sphinx",
"pydata-sphinx-theme",
"sphinx-autoapi",
"sphinx-favicon",
"sphinxcontrib-mermaid",
"sphinx-automodapi"]
dev = ["punchpipe[test,docs]", "pre-commit"]
[project.scripts]
punchpipe = "punchpipe.cli:main"
[project.urls]
#Homepage = "https://example.com"
#Documentation = "https://readthedocs.org"
Repository = "https://github.com/punch-mission/punchpipe.git"
"Bug Tracker" = "https://github.com/punch-mission/punchpipe/issues"
#Changelog = "https://github.com/punch-mission/thuban/blob/main/CHANGELOG.md"
[tool.setuptools_scm]
[tool.setuptools]
packages = ["punchpipe"]
[tool.codespell]
skip = "*.fts,*.fits,venv,*.pro,*.asdf,*.ipynb"
[tool.ruff]
target-version = 'py311'
exclude = ['tests', 'scripts', 'docs']
line-length=120
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["E402"]
"*/tests/*" = ['S101']
[tool.isort]
balanced_wrapping = true
default_section = "THIRDPARTY"
include_trailing_comma = true
known_compatibility = "future"
known_first_party = "punchpipe"
length_sort = false
length_sort_sections = "stdlib"
line_length = 120
multi_line_output = 3
no_lines_before = "LOCALFOLDER"
sections = "FUTURE, COMPATIBILITY, STDLIB, THIRDPARTY, FIRSTPARTY, LOCALFOLDER"
[tool.pytest.ini_options]
markers = [
"prefect_test: a test that integrates with Prefect",
"regression: a regression test, likely slow",
]