forked from syrusakbary/snapshottest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
63 lines (58 loc) · 1.6 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
tests_require = [
'six',
'pytest>=3.0',
'pytest-cov',
'nose',
]
setup(
name='snapshottest',
version='0.4.0',
description='Snapshot Testing utils for Python',
long_description=readme,
author='Syrus Akbary',
author_email='me@syrusakbary.com',
url='https://github.com/syrusakbary/snapshottest',
# custom PyPI classifier for pytest plugins
entry_points = {
'pytest11': [
'snapshottest = snapshottest.pytest',
],
'nose.plugins.0.10': [
'snapshottest = snapshottest.nose:SnapshotTestPlugin'
]
},
install_requires=[
'six>=1.10.0',
'termcolor',
],
tests_require=tests_require,
extras_require={
'test': tests_require,
'pytest': [
'pytest',
],
'nose': [
'nose',
],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Operating System :: OS Independent',
'Framework :: Pytest',
],
license='MIT',
packages=find_packages(exclude=('tests',))
)