Statistics
| Branch: | Tag: | Revision:

root / setup.py @ 08845665

History | View | Annotate | Download (433 Bytes)

1
#!/usr/bin/env python
2

    
3
from setuptools import setup
4

    
5
setup(
6
    name="vncauthproxy",
7
    version="1.0",
8
    description="VNC authentication proxy",
9
    author="Apollon Oikonomopoulos",
10
    author_email="apollon@noc.grnet.gr",
11
    license="GPL2+",
12
    url="http://code.grnet.gr/projects/vncauthproxy",
13
    packages=["vncauthproxy"],
14
    install_requires=[
15
        'daemon',
16
        'gevent',
17
    ],
18
    scripts=['vncauthproxy.py'],
19
)