-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.19 KB
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
[build-system]
requires = ["hatchling>=1.21"]
build-backend = "hatchling.build"
[project]
name = "envon"
version = "0.1.6"
description = "Emit the activation command for the nearest Python virtual environment and install shell bootstrap wrappers."
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
keywords = ["virtualenv", "venv", "activation", "shell", "bootstrap"]
authors = [{ name = "User1995", email = "userfrom1995@gmail.com" }]
urls = { "Homepage" = "https://github.com/userfrom1995/envon", "Repository" = "https://github.com/userfrom1995/envon" }
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
"Topic :: System :: Shells",
"Topic :: Software Development :: Build Tools",
]
# Require virtualenv so activator plugins are always available
dependencies = [
"virtualenv>=20"
]
[project.scripts]
envon = "envon.envon:main"
[tool.hatch.build.targets.wheel]
packages = ["src/envon"]
[tool.hatch.build.targets.sdist]
include = [
"src/envon/**",
"docs/**",
"README.md",
"LICENSE",
".rpmlintrc",
]