Statistics
| Branch: | Tag: | Revision:

root / setup.py @ 3b98303f

History | View | Annotate | Download (1.5 kB)

1
# Copyright (c) 2010-2013 Greek Research and Technology Network S.A.
2
#
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
7
#
8
# This program is distributed in the hope that it will be useful, but
9
# WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11
# General Public License for more details.
12
#
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16
# 02110-1301, USA.
17

    
18
import distribute_setup
19
distribute_setup.use_setuptools()
20

    
21
from setuptools import setup
22

    
23
from vncauthproxy.version import __version__
24

    
25
setup(
26
    name="vncauthproxy",
27
    version=__version__,
28
    description="VNC authentication proxy",
29
    author="Synnefo development team",
30
    author_email="synnefo-devel@googlegroups.com",
31
    maintainer="Synnefo development team",
32
    maintainer_email="synnefo-devel@googlegroups.com",
33
    license="GPL2+",
34
    url="http://www.synnefo.org",
35
    packages=["vncauthproxy"],
36
    zip_safe=False,
37
    install_requires=[
38
        'python-daemon',
39
        'gevent',
40
    ],
41
    entry_points={
42
        'console_scripts': [
43
            'vncauthproxy = vncauthproxy.proxy:main',
44
            'vncauthproxy-passwd = vncauthproxy.passwd:main'
45
        ]
46
    }
47
)