forked from voronind/vk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
72 lines (60 loc) · 1.32 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
71
72
[metadata]
name = vk
version = attr: vk.__version__
author = Dmitry Voronin
author_email = [email protected]
url = https://github.com/voronind/vk
description = Python vk.com API wrapper
keywords = vk.com api vk wrappper
license = MIT License
license_file = LICENSE
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: Implementation :: PyPy
Intended Audience :: Developers
Topic :: Software Development :: Libraries :: Python Modules
[options]
packages = find:
[tox:tox]
envlist = py35, py36, pypy3, docs
skipsdist = true
[testenv]
skipinstall = true
passenv = TEST_APP_SERVICE_TOKEN
deps =
; 2018.7.1 contains error
pipenv<2018.7
commands=
pipenv install --dev --skip-lock
pipenv run fulltest
py35: pipenv run doctest
py35: pipenv run build-docs
[testenv:docs]
basepython = python3.5
deps =
; 2018.7.1 contains error
pipenv<2018.7
sphinx
commands=
pipenv install --skip-lock
pipenv run doctest
pipenv run build-docs
[tool:pytest]
testpaths = tests
norecursedirs =
.*/
docs/
[flake8]
max-line-length = 120
exclude =
.*/,
docs/_build/
[coverage:run]
source = vk
branch = True
[coverage:report]
fail_under = 50
[mypy]
check_untyped_defs = yes