-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (27 loc) · 899 Bytes
/
pyproject.toml
File metadata and controls
33 lines (27 loc) · 899 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
32
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "ivpm"
version = "2.6.0"
dependencies = [
"httpx>=0.28.1,<1.0",
"pyyaml",
"pyyaml-srcinfo-loader",
"rich",
"setuptools",
"toposort",
]
authors = [
{name = "Matthew Ballance", email = "matt.ballance@gmail.com"},
]
description = "IVPM (IP and Verification Package Manager) is a project-internal package manager."
license = {file = "LICENSE" }
[project.scripts]
ivpm = "ivpm.__main__:main"
[tool.setuptools.package-data]
ivpm = ['scripts/*', 'templates/*', 'share/*', 'share/*.md', 'share/cmake/*']
[project.entry-points."ivpm.handlers"]
python = "ivpm.handlers.package_handler_python:PackageHandlerPython"
direnv = "ivpm.handlers.package_handler_direnv:PackageHandlerDirenv"
skills = "ivpm.handlers.package_handler_skills:PackageHandlerSkills"