-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (40 loc) · 967 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools-scm", "wheel", "twine"]
build-backend = "setuptools.build_meta"
[project]
name = "isolated-environment"
description = "Like Pipx, but allows creation of a virtual environment then populating it."
requires-python = ">=3.10"
readme = "README.md"
keywords = ["template-python-cmd"]
license = { text = "BSD 3-Clause License" }
classifiers = ["Programming Language :: Python :: 3"]
dependencies = [
"wheel",
"filelock",
"setuptools",
]
# Change this with the version number bump.
version = "2.0.4"
[tool.ruff]
line-length = 200
[tool.pylint."MESSAGES CONTROL"]
good-names = [
"c",
"i",
"ok",
"id",
"e",
"f"
]
disable = [
"missing-function-docstring",
"missing-module-docstring"
]
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true
disable_error_code = ["import-untyped"]
# [project.scripts]
# isolated-environment = "isolated_environment.cli:main"