-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (36 loc) · 1.43 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
39
40
41
#!/usr/bin/env python
"""setup/install script for testingbotclient."""
import os
import setuptools
setuptools.setup(
name='testingbotclient',
version='0.1.1',
py_modules=['testingbotclient'],
author='TestingBot',
author_email='info@testingbot.com',
description='Python client library for TestingBot API.',
long_description='Update test details on TestingBot.com with this library. Set success state/name of test after running the Selenium test.',
url='https://github.com/testingbot/testingbotclient',
download_url='http://pypi.python.org/pypi/testingbotclient',
keywords='testingbot selenium testing'.split(),
license='Apache v2.0',
install_requires=[
'requests',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Testing',
]
)