-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.cfg
70 lines (60 loc) · 1.23 KB
/
setup.cfg
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
64
65
66
67
68
69
70
[metadata]
name = minimock
version = attr: minimock.__version__
author = Ian Bicking
author_email = ianb@colorstudy.com
maintainer = Low Kian Seong
maintainer_email = kianseong@gmail.com
description = The simplest possible mock library
long_description = file: README.rst
long_description_content_type = text/x-rst; charset=UTF-8
url = https://github.com/lowks/minimock
license = MIT
license_files = LICENSE.txt
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Topic :: Software Development :: Testing
Programming Language :: Python :: 3.6
keywords =
mock
testing
unittest
[options]
python_requires = >=3.6
zip_safe = True
py_modules =
minimock
[options.extras_require]
test =
pytest
pytest-flake8
pytest-cov
cov =
coverage
coverage_python_version
[bdist_wheel]
universal = 1
[check-manifest]
ignore =
.codeclimate.yml
.gitattributes
.coveragerc
.gitignore
.pep8speaks.yml
codecov.yml
conda/**
[flake8]
exclude =
.git,
__pycache__,
build,
dist
max-line-length = 100
[nosetests]
verbosity = 3
with-coverage = 1
with-doctest = 1
cover-package = minimock
cover-xml = 1