File: setup.py

package info (click to toggle)
pytest-expect 1.1.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 80 kB
  • sloc: python: 175; makefile: 3
file content (41 lines) | stat: -rw-r--r-- 1,169 bytes parent folder | download | duplicates (5)
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
from setuptools import setup

_classifiers = [
    'Development Status :: 4 - Beta',
    'Intended Audience :: Developers',
    'License :: OSI Approved :: MIT License',
    'Operating System :: OS Independent',
    'Programming Language :: Python',
    'Programming Language :: Python :: 2',
    'Programming Language :: Python :: 2.6',
    'Programming Language :: Python :: 2.7',
    'Programming Language :: Python :: 3',
    'Programming Language :: Python :: 3.2',
    'Programming Language :: Python :: 3.3',
    'Programming Language :: Python :: 3.4',
    'Topic :: Software Development :: Testing'
    ]

setup(
    name="pytest-expect",
    version="1.1.0",
    url="https://github.com/gsnedders/pytest-expect",
    license="MIT License",
    description="py.test plugin to store test expectations and mark tests based on them",
    classifiers=_classifiers,
    maintainer="Geoffrey Sneddon",
    maintainer_email="geoffers@gmail.com",

    install_requires=[
        "pytest",
        "u-msgpack-python"
    ],

    packages=["pytest_expect"],

    entry_points={
        'pytest11': [
            'pytest_expect = pytest_expect.expect',
        ]
    }
)