Statistics
| Branch: | Tag: | Revision:

root / setup.py @ da142b1f

History | View | Annotate | Download (524 Bytes)

1
#!/usr/bin/env python
2

    
3
from setuptools import setup
4

    
5
setup(
6
    name="vncauthproxy",
7
    version="1.2",
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
        'python-daemon',
16
        'gevent',
17
    ],
18
    entry_points={
19
        'console_scripts': [
20
            'vncauthproxy = vncauthproxy.proxy:main'
21
        ]
22
    }
23
)