-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 953 Bytes
/
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
'''!
@author atomicfruitcake
Setup file for pypi
'''
from setuptools import setup
setup(
name = 'selepy',
packages = ['selepy'],
version = '0.3',
description = 'Browser automation framework',
long_description='Browser automation framework designed to allow automation scripts '
'to work both locally and inside docker containers',
license='MIT',
author = 'Sam Bass',
author_email = 'sam@wirewax.com',
url = 'https://github.com/atomicfruitcake/selepy',
download_url = 'https://github.com/atomicfruitcake/selepy/archive/0.3.tar.gz',
keywords = ['selenium', 'testing', 'automation', 'docker'],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
install_requires=['selenium'],
)