forked from sibson/vncdotool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (46 loc) · 1.44 KB
/
setup.py
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
#!/usr/bin/env python
from setuptools import setup
from vncdotool import __version__
README = open('README.rst', 'rt').read()
setup(
name='vncdotool',
version=__version__,
description='Command line VNC client',
install_requires=[
'Twisted',
"Pillow",
],
tests_require=[
'nose',
'pexpect',
],
url='http://github.com/sibson/vncdotool',
author='Marc Sibson',
author_email='[email protected]',
download_url='',
entry_points={
"console_scripts": [
'vncdo=vncdotool.command:vncdo',
'vncdotool=vncdotool.command:vncdo',
'vnclog=vncdotool.command:vnclog',
],
},
packages=['vncdotool'],
classifiers=[
'Development Status :: 4 - Beta',
'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 :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Graphics :: Viewers',
'Topic :: Software Development :: Testing',
],
long_description=open('README.rst').read(),
)