forked from ratson/pytest-notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (39 loc) · 1.29 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
import setuptools
tests_require = [
'pytest',
'pytest-mock',
]
setuptools.setup(
name="pytest-notifier",
version="1.0.4",
url="https://github.com/ratson/pytest-notifier",
author="Ratson",
author_email="contact@ratson.name",
description="A pytest plugin to notify test result",
long_description=open('README.rst').read(),
keywords=[
'pytest', 'pytest-', 'osx', 'linux', 'notifications', 'notifier',
'notificationcenter', 'py.test', 'terminal-notifier', 'libnotify'],
packages=setuptools.find_packages(),
install_requires=['pytest'],
setup_requires=['pytest-runner'],
tests_require=tests_require,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
entry_points={
'pytest11': [
'notifier = pytest_notifier',
],
},
)