-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (44 loc) · 1.69 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "isvirtual"
description = "Tool to detect if the current directory is linked to a virtual environment, get the config of this env and more. Work with venv, virtualenv, pipenv, poetry, hatch, pdm and uv."
dynamic = ["version"]
readme = "README.md"
authors = [{ name = "Alex Mili" }]
license = { file = "LICENSE" }
requires-python = ">=3.3"
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
keywords = ["virtual", "env", "venv", "virtualenv", "environment", "poetry", "pipenv", "pdm", "hatch", "uv"]
dependencies = ["platformdirs", "typer", "sty"]
[project.urls]
Homepage = "https://github.com/AlexMili/isVirtual"
Issues = "https://github.com/AlexMili/isVirtual/issues"
Repository = "https://github.com/AlexMili/isVirtual"
Documentation = "https://github.com/AlexMili/isVirtual"
[project.scripts]
isvirtual = "isvirtual.cli:app"
[tool.hatch.build.targets.wheel]
packages = ["./isvirtual"]
[tool.hatch.version]
path = "isvirtual/VERSION.md"
pattern = "(?P<version>.*)"
[tool.ruff.lint.isort]
lines-after-imports = 2
known-first-party = ["isvirtual"]