-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.cfg
47 lines (44 loc) · 1.37 KB
/
setup.cfg
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
[metadata]
name = robotpy-installer
description = Installation utility program for RobotPy
long_description = file: README.rst
long_description_content_type = text/x-rst
author = RobotPy Development Team
author_email = [email protected]
url = https://github.com/robotpy/robotpy-installer
license = BSD
# Include the license file in wheels.
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
[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires =
packaging~=23.2
paramiko
pynetconsole~=2.0.2
robotpy-cli~=2024.0
tomli
tomlkit
setup_requires =
setuptools_scm > 6
python_requires = >=3.9
[options.entry_points]
console_scripts =
robotpy-installer = robotpy_installer.installer:main
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