-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 920 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
31
32
from setuptools import setup
try:
import multiprocessing
except ImportError:
pass
setup(
name="nose-pattern-exclude",
version='0.1.3',
author="Jakub Roztocil",
author_email="jakub@roztocil.name",
description="Exclude specific files and directories from nosetests runs.",
long_description=open('README.rst').read().strip(),
license='BSD',
url="http://github.com/jkbr/nose-pattern-exclude",
classifiers=[
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Programming Language :: Python",
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
py_modules=['nose_pattern_exclude'],
zip_safe=False,
entry_points={
'nose.plugins': [
'nose_pattern_exclude = nose_pattern_exclude:NosePatternExclude'
]
},
install_requires=['nose'],
)