-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
30 lines (28 loc) · 958 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
30
from distutils.core import setup
__VERSION__ = '0.1.7'
__URL__ = 'https://github.com/dbader/pytest-osxnotify'
__DOWNLOAD_URL__ = (__URL__ + '/tarball/' + __VERSION__)
setup(
author='Daniel Bader',
author_email='[email protected]',
version=__VERSION__,
description='OS X notifications for py.test results.',
url=__URL__,
download_url=__DOWNLOAD_URL__,
name='pytest-osxnotify',
keywords=[
'pytest', 'pytest-', 'osx', 'notifications', 'mountainlion',
'notificationcenter', 'py.test'],
packages=['pytest_osxnotify'],
entry_points={'pytest11': ['pytest_osxnotify = pytest_osxnotify', ]},
install_requires=[
'pyobjc-core',
],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
]
)