forked from jpstacey/PySelenese
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (22 loc) · 788 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
# -*- coding: utf-8 -*-
import os
from distutils.core import setup
setup(
name = 'pyselenese2',
version = '0.1.2',
description = "Python Selenese translator",
author = 'Esteban Ordano',
author_email = 'eordano@gmail.com',
url = 'https://github.com/eordano/pyselenese2',
license = 'MIT License',
long_description = open('README.rst').read(),
packages = ['pyselenese2'],
requires = ['selenium', 'lxml'],
classifiers = [
'Intended Audience :: Developers',
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Testing',
],
)