-
Notifications
You must be signed in to change notification settings - Fork 123
/
setup.cfg
47 lines (45 loc) · 1.24 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 = vncdotool
version = attr: vncdotool.__version__
url = http://github.com/sibson/vncdotool
author = Marc Sibson
author_email = [email protected]
description = Command line VNC client
long_description = file: README.rst, CHANGELOG.rst
keywords = VNC, RFB
python_requires = >=3.8
license = MIT License
license_files = LICENSE.txt
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Framework :: Twisted
Intended Audience :: Developers
Intended Audience :: System Administrators
License :: OSI Approved :: MIT License
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Programming Language :: Python
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Multimedia :: Graphics :: Viewers
Topic :: Software Development :: Testing
[options]
zip_safe = True
packages =
vncdotool
install_requires =
Twisted
Pillow
pycryptodomex
tests_require =
pexpect
[options.entry_points]
console_scripts =
vncdo = vncdotool.command:vncdo
vncdotool = vncdotool.command:vncdo
vnclog = vncdotool.command:vnclog