-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
71 lines (62 loc) · 1.33 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
### Build ###
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
### Project ###
[project]
name = "dof"
description = "demo conda environemnts"
version = "0.0.1"
readme = "README.md"
requires-python = ">=3.12,<3.13"
keywords = ["conda"]
authors = [
{ name = "Sophia Castellarin", email = "[email protected]" },
]
dependencies = [
"py-rattler",
"pydantic >=2.0",
"pyyaml",
"rich",
"setuptools",
"typer",
]
[project.urls]
Source = "https://github.com/soapy1/dof"
Issues = "https://github.com/soapy1/dof/issues"
[project.scripts]
dof = "dof.__main__:main"
[tool.black]
line-length = 88
[tool.isort]
lines_between_types = 1
lines_after_imports = 2
profile = 'black'
[tool.ruff]
line-length = 88
[tool.ruff.lint]
ignore = [
"E501", # line-length
]
select = [
"E", # pycodestyle
"W", # pycodestyle
"F", # Pyflakes
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
"I", # isort
"N", # pep8 naming
"D", # pydocstyle
"ANN", # annotations
"T10", # debugger
"PT", # flake8-pytest
"RET", # flake8-return
"ARG", # flake8-unused-arguments
"FIX", # flake8-fixme
"ERA", # flake8-eradicate
"PD", # pandas-vet
"NPY", # numpy-specific rules
]
[tool.ruff.lint.pydocstyle]
convention = "numpy"