forked from cjw296/nose_fixes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 1022 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
33
34
35
36
# Copyright (c) 2011 Simplistix Ltd
# See license.txt for license details.
import os
from setuptools import setup, find_packages
name = 'nose_fixes'
setup(
name=name,
version='1.0',
author='Chris Withers',
author_email='[email protected]',
license='MIT',
description="A plugin to make nose behave better.",
long_description=open(os.path.join(os.path.dirname(__file__),
'docs','description.txt')).read(),
url='http://packages.python.org/'+name,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
],
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=[
'nose',
'setuptools', # so nose's EntryPointPluginManager gets used
],
entry_points = {
'nose.plugins.0.10': [
'nose_fixes = nose_fixes.plugin:Plugin'
]
},
)