-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (49 loc) · 1.09 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=43.0.0",
"setuptools_scm[toml]>=6.2",
"wheel",
]
[project]
name = "virtualenv-seedhelper"
description = "A virtualenv seeder to seed wheels from a folder"
authors = [{ name = "Thomas Gilgenast", email = "[email protected]" }]
urls = { repository = "https://github.com/sclabs/virtualenv-seedhelper" }
readme = "README.md"
dynamic = ["version"]
requires-python = ">=3.7"
dependencies = [
"fire",
"platformdirs",
"virtualenv",
]
[project.optional-dependencies]
lint = [
"black==23.3.0",
"ruff==0.0.262",
]
type = [
"mypy==1.2.0",
]
test = [
"pytest==7.3.1",
"tox==4.4.12",
"tox-extras==0.0.1",
]
dev = [
"tox-extras[lint,type,test]",
]
[project.entry-points."virtualenv.seed"]
seedhelper = "virtualenv_seedhelper:SeedHelper"
[project.scripts]
seedhelper = "virtualenv_seedhelper:main"
[tool.mypy]
ignore_missing_imports = true
strict = true
[tool.ruff]
select = ["E", "F", "W", "I"]
[tool.setuptools]
py-modules = ["virtualenv_seedhelper"]
[tool.setuptools_scm]
root = "."