-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (25 loc) · 777 Bytes
/
pyproject.toml
File metadata and controls
31 lines (25 loc) · 777 Bytes
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "venv-pack2"
version = "0.9.1"
maintainers = [
{name = "mrmathematica", email = "mrmathematica@yahoo.com"}
]
keywords = ["venv", "packaging", "portable"]
classifiers = [
"Topic :: System :: Archiving :: Packaging",
"Topic :: System :: Software Distribution",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
]
description="Package virtual environments for redistribution"
readme = "README.md"
[project.urls]
Repository = "https://github.com/mrmathematica/venv-pack2.git"
[project.scripts]
venv-pack = "venv_pack.__main__:main"
[options]
package_dir = "venv_pack"