File: setup.py

package info (click to toggle)
python-nose-exclude 0.5.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 160 kB
  • sloc: python: 331; makefile: 13
file content (41 lines) | stat: -rw-r--r-- 1,109 bytes parent folder | download | duplicates (3)
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
# Multiprocessing handling to avoid atexit test runner failure
try:
    import multiprocessing
except ImportError:
    pass
import os
from setuptools import setup


def read(fname):
    return open(os.path.join(os.path.dirname(__file__), fname)).read().strip()

VERSION = '0.5.0'

setup(
    name="nose-exclude",
    version=VERSION,
    author="Kurt Grandis",
    author_email="kgrandis@gmail.com",
    description="Exclude specific directories from nosetests runs.",
    long_description=read('README.rst'),
    license='GNU LGPL',
    url="https://github.com/kgrandis/nose-exclude",
    classifiers=[
        "Development Status :: 3 - Alpha",
        "Intended Audience :: Developers",
        ("License :: OSI Approved :: GNU Library or Lesser General "
         "Public License (LGPL)"),
        "Topic :: Software Development :: Testing",
        "Programming Language :: Python",
        ],

    py_modules=['nose_exclude'],
    zip_safe=False,

    entry_points={
        'nose.plugins': ['nose_exclude = nose_exclude:NoseExclude']
        },
    install_requires=['nose'],
    test_suite='tests',
)