-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
38 lines (31 loc) · 1.01 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
from setuptools import setup, find_packages
from guacg import VERSION
# @todo: install as server!
with open('README.md') as f:
README = f.read()
with open('LICENSE') as f:
LICENSE = f.read()
setup(
name='gevent-guacamole',
version=VERSION,
url='https://github.com/mohabusama/gevent-guacamole',
author='Mohab Usama',
author_email='[email protected]',
description=('A gevent websocket Guacamole broker.'),
long_description=README,
license=LICENSE,
zip_safe=False,
packages=find_packages(exclude=['tests']),
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Communications',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)