-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 1.35 KB
/
setup.py
File metadata and controls
33 lines (32 loc) · 1.35 KB
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
#!/usr/bin/env python
# encoding: utf-8
'''
'''
from distutils.core import setup
def install():
setup(
name = 'robotframework-websocketlibrary',
version = "1.0.0",
description = "WebSocket testing library for Robot Framework",
url = 'https://github.com/tcmak/robotframework-websocketlibrary',
classifiers = ['Development Status :: 5 - Production/Stable',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'License :: Freeware',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Topic :: Education',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4'],
py_modules = ['WebSocketLibrary'],
author = 'Steven Mak',
author_email = 'stevenmak@gmail.com',
scripts=['WebSocketLibrary.py']
)
if __name__ == "__main__":
install()