-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
79 lines (69 loc) · 1.4 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
72
73
74
75
76
77
78
79
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "venvstarter"
dynamic = ["version"]
description = "Tool to create virtualenvs, manage versions of packages in it and use it start a particular program"
readme = "README.rst"
license = "MIT"
requires-python = ">= 3.7"
authors = [
{ name = "Stephen Moore", email = "[email protected]" },
]
[project.optional-dependencies]
tests = [
"noseOfYeti[black]==2.4.7",
"pytest-helpers-namespace==2021.12.29",
"pytest-parallel==0.1.1",
"pytest>=7.2.0",
]
[project.urls]
Homepage = "https://github.com/delfick/venvstarter"
[tool.hatch.version]
path = "_venvstarter/version.py"
[tool.hatch.build]
include = [
"/_venvstarter",
"/venvstarter.py",
]
[tool.hatch.build.targets.sdist]
include = [
"/_venvstarter",
"/venvstarter.py",
]
[tool.hatch.build.targets.wheel]
include = [
"/_venvstarter",
"/venvstarter.py",
]
[tool.black]
line-length = 100
include = '(\.py|^venv)$'
exclude = '''
/(
\.git
| \.tox
| dist
| tools/\.python
| docs/_build
| build
)/
'''
[tool.isort]
profile = "black"
skip_glob = [
".git/*",
".tox/*",
"dist/*",
"tools/.python/*",
"tools/deps/*",
"docs/_build/*",
"build/*",
]
[tool.mypy]
plugins = 'noseOfYeti.plugins.mypy'
ignore_missing_imports = true
show_column_numbers = true
allow_redefinition = true
exclude = ["tools/deps", "tests"]