forked from yashaka/selene
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (41 loc) · 1.71 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
42
43
from setuptools import setup
from selene import version
description = 'Concise API for selenium in Python + Ajax support + PageObjects (Selenide port from Java to Python)'
# long_description = 'see http://github.com/yashaka/selene/ for more docs...'
setup(
name='selene',
version=version.VERSION,
url='http://github.com/yashaka/selene/',
download_url='https://github.com/yashaka/selene/tarball/' + version.VERSION,
license='MIT',
author='Iakiv Kramarenko',
author_email='yashaka@gmail.com',
description=description,
# long_description=long_description,
packages=['selene',
'selene.api',
'selene.abctypes',
'selene.common',
'selene.support',
'selene.support.conditions'],
include_package_data=True,
install_requires=['selenium', 'webdriver_manager', 'future', 'backports.functools_lru_cache', 'six'],
platforms='any',
zip_safe=False,
keywords=['testing', 'selenium', 'selenide', 'browser', 'pageobject', 'widget', 'wrapper'],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Development Status :: 3 - Alpha',
'Natural Language :: English',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Internet :: WWW/HTTP :: Browsers',
'Topic :: Software Development :: Testing'
]
)