Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dbader committed Aug 3, 2013
1 parent d7fa36a commit 7d840e1
Showing 1 changed file with 23 additions and 4 deletions.
27 changes: 23 additions & 4 deletions setup.py
@@ -1,10 +1,29 @@
from setuptools import setup
from distutils.core import setup

__VERSION__ = '0.1.0'
__URL__ = 'https://github.com/dbader/pytest-osxnotify'
__DOWNLOAD_URL__ = (__URL__ + '/tarball/' + __VERSION__)

setup(
author="Daniel Bader",
author_email="mail@dbader.org",
version="0.1.0",
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",
keywords=[
'pytest', 'pytest-', 'osx', 'notifications', 'mountainlion',
'notificationcenter', 'py.test'],
packages=['pytest_osxnotify'],
entry_points={'pytest11': ['pyest_osxnotify = pytest_osxnotify', ]},)
entry_points={'pytest11': ['pyest_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',
]
)

0 comments on commit 7d840e1

Please sign in to comment.