-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
58 lines (49 loc) · 1.51 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
58
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "robotpy-installer"
dynamic = ["version"]
description = "Installation utility program for RobotPy"
readme = "README.rst"
requires-python = ">=3.9"
authors = [
{ name = "RobotPy Development Team", email = "[email protected]" },
]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
]
dependencies = [
"packaging>=23.2",
"paramiko",
"pip",
"pynetconsole~=2.0.2",
"robotpy-cli~=2024.0",
"tomli",
"tomlkit",
]
[project.urls]
"Source code" = "https://github.com/robotpy/robotpy-installer"
[project.scripts]
robotpy-installer = "robotpy_installer.installer:main"
[project.entry-points.robotpy]
deploy = "robotpy_installer.cli_deploy:Deploy"
deploy-info = "robotpy_installer.cli_deploy_info:DeployInfo"
init = "robotpy_installer.cli_init:Init"
installer = "robotpy_installer.cli_installer:Installer"
project = "robotpy_installer.cli_project:Project"
sync = "robotpy_installer.cli_sync:Sync"
undeploy = "robotpy_installer.cli_undeploy:Undeploy"
[tool.hatch.build]
include = ["robotpy_installer"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "robotpy_installer/version.py"