forked from pyrevitlabs/pyRevit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipfile
More file actions
35 lines (30 loc) · 645 Bytes
/
Copy pathPipfile
File metadata and controls
35 lines (30 loc) · 645 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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
mypy = "*"
pylint = "==4.0.6"
pre-commit = "*"
[packages]
pyyaml = ">=5.4"
black = "*"
setuptools = "==83.0.0"
mkdocs = "*"
mkdocstrings = "*"
mkdocstrings-python = "*"
mkdocs-gen-files = "*"
mkdocs-literate-nav = "*"
mkdocs-exclude = "*"
mkdocs-section-index = "*"
mkdocs-material = "*"
ruff = "*"
[requires]
python_version = "3.14"
[pipenv]
allow_prereleases = false
[scripts]
docs = "mkdocs build"
check-docstrings = "ruff check --fix pyrevitlib/pyrevit"
check-py3 = "python ./dev/scripts/check_py3_compat.py"
install-hooks = "pre-commit install"