-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathsetup.py
43 lines (40 loc) · 1.33 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, find_packages
# will fail to install via pip/easy_install
#from sniffer.metadata import __version__, __author__, __author_email__
__version__, __author__, __author_email__ = "0.4.1", "Jeff Hui", "[email protected]"
setup(
name='sniffer',
version=__version__,
description='An automatic test runner. Supports nose out of the box.',
long_description=open('README.rst').read(),
author=__author__,
author_email=__author_email__,
url='https://github.com/jeffh/sniffer/',
install_requires=[
'colorama',
'python-termstyle',
'nose',
],
extras_require = {
'Growl': ['gntp==0.7'],
'LibNotify': ['py-notify==0.3.1'],
'OSX': ['MacFSEvents==0.2.8'],
#'Windows': ['pywin'], # not part of PYPI
'Linux': ['pyinotify==0.9.0'],
},
entry_points = {
'console_scripts': ['sniffer = sniffer:main'],
},
packages=find_packages(),
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Testing',
],
)