Newer
Older
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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2", 'setuptools_scm_git_archive']
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "aosstower/version.py"
[tool.isort]
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
profile = "black"
skip_gitignore = true
default_section = "THIRDPARTY"
known_first_party = "aosstower"
line_length = 120
skip = [".gitignore", "aosstower/version.py"]
[tool.black]
line-length = 120
exclude = '''
(
\.git
| build
| dist
| aosstower/version\.py
)
'''
[tool.ruff]
line-length = 120
select = [
"E", "F", "W", "C90", "I", "N", "D", "UP", "YTT", "S", "BLE", "B", "A",
"COM", "C4", "T10", "EXE", "ISC", "ICN", "INP", "PIE", "T20", "PYI", "PT",
"Q", "RSE", "RET", "SLF", "SIM", "TID", "TCH", "ARG", "PTH", "ERA", "PD",
"PGH", "PL", "TRY", "NPY", "RUF",
]
ignore = ["D100", "D101", "D102", "D103", "D104", "D105", "D106", "D107", "D203", "D213", "B008"]
[tool.ruff.per-file-ignores]
"aosstower/tests/*" = ["S", "PLR2004"]
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
[tool.mypy]
python_version = "3.10"
[tool.coverage]
relative_files = true
omit = ["aosstower/version.py"]
[project]
name = "aosstower"
authors = [
{name = "David Hoese", email = "david.hoese@ssec.wisc.edu"},
]
description = "UW AOSS Rooftop Instrument Group Met Tower"
readme = "README.md"
keywords = ["metobs"]
license = {text = "MIT"}
classifiers = [
"Framework :: Flask",
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.10"
dependencies = [
"numpy",
"pandas",
]
dynamic = ["version"]
[project.optional-dependencies]
tests = [
"pytest",
]
[tool.setuptools]
packages = ["aosstower"]