-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (41 loc) · 961 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (41 loc) · 961 Bytes
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
[project]
name = "developerdevelopment"
version = "0.1.0"
description = ""
authors = [
{ name = "Gregory M. Kapfhammer", email = "gkapfham@allegheny.edu" },
]
readme = "README.md"
requires-python = ">=3.11,<4.0"
dependencies = [
"jupyter>=1.0.0,<2.0.0",
"matplotlib>=3.7.1,<4.0.0",
"pyyaml>=6.0,<7.0",
"rich>=13.3.5,<14.0.0",
"bibtexparser>=1.4.0,<2.0.0",
"csscompressor>=0.9.5,<0.10.0",
"rjsmin>=1.2.1,<2.0.0",
"minify-html>=0.11.1,<0.12.0",
]
[dependency-groups]
dev = [
"black>=23.3.0,<24.0.0",
"ruff>=0.16.4",
]
[tool.uv]
# This repository contains a Quarto website, not an installable Python package.
package = false
[tool.ruff]
ignore = [
"E501", # do not check line length
]
select = [
"E", # pycodestyle errors
"I", # isort
"F", # Pyflakes
"PL", # pylint
"Q", # flake8-quotes
"RUF", # ruff-specific
"W", # pycodestyle warnings
"T201" # flake8-print
]