-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 925 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 925 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name="nose-parallel",
version="0.4.0",
description=u"A nosetests plugin to split test suites to run in parallel",
long_description=open("README.rst").read(),
author=", ".join([u"Daniel Langer",]),
author_email="daniel@langer.me",
url="https://github.com/dlanger/nose-parallel",
packages=["noseparallel",],
test_suite="nose.collector",
tests_require=["nose"],
entry_points="""
[nose.plugins.0.10]
noseparallel= noseparallel:ParallelPlugin
""",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Testing",
"Environment :: Console",
],
)