-
Notifications
You must be signed in to change notification settings - Fork 51
/
setup.py
executable file
·61 lines (56 loc) · 2.03 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
"""Setuptools entry point."""
import codecs
import os
from setuptools import setup
import pytest_splinter
dirname = os.path.dirname(__file__)
long_description = (
codecs.open(os.path.join(dirname, 'README.rst'), encoding='utf-8').read() + '\n' +
codecs.open(os.path.join(dirname, 'AUTHORS.rst'), encoding='utf-8').read() + '\n' +
codecs.open(os.path.join(dirname, 'CHANGES.rst'), encoding='utf-8').read()
)
setup(
name='pytest-splinter',
description='Splinter plugin for pytest testing framework',
long_description=long_description,
author='Anatoly Bubenkov, Paylogic International and others',
license='MIT license',
author_email='bubenkoff@gmail.com',
version=pytest_splinter.__version__,
include_package_data=True,
url='https://github.com/pytest-dev/pytest-splinter',
project_urls={
"Bug Tracker": "https://github.com/pytest-dev/pytest-splinter/issues",
"Changes": "https://github.com/pytest-dev/pytest-splinter/blob/master/CHANGES.rst",
"Documentation": "https://github.com/pytest-dev/pytest-splinter/blob/master/README.rst",
"Source Code": "https://github.com/pytest-dev/pytest-splinter",
},
install_requires=[
'setuptools',
'splinter>=0.13.0',
'selenium',
'pytest>=3.0.0',
'urllib3',
],
classifiers=[
'Development Status :: 6 - Mature',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
'Programming Language :: Python :: 3',
]
+ [
('Programming Language :: Python :: %s' % x)
for x in '3.6 3.7 3.8'.split()
],
tests_require=['tox'],
entry_points={'pytest11': [
'pytest-splinter=pytest_splinter.plugin',
]},
packages=['pytest_splinter'],
)