forked from okken/pytest-expect
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 1.02 KB
/
setup.py
File metadata and controls
31 lines (28 loc) · 1.02 KB
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
with open("VERSION") as f:
VERSION = f.read().strip()
setup(
name="pytest-assume",
packages=["pytest_assume"],
version=VERSION,
description="A pytest plugin that allows multiple failures per test",
author="Brian Okken/Ashley Straw",
author_email="as.fireflash38@gmail.com",
maintainer="Ashley Straw",
maintainer_email="as.fireflash38@gmail.com",
license="MIT",
keywords=["testing", "pytest", "assert"],
install_requires=["pytest>=2.7", "six"],
download_url="https://github.com/astraw38/pytest-assume/tarball/{}".format(VERSION),
url="https://github.com/astraw38/pytest-assume",
classifiers=[
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
# the following makes a plugin available to py.test
entry_points={"pytest11": ["assume = pytest_assume.plugin"]},
)