-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.cfg
55 lines (45 loc) · 1.01 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
[metadata]
name = robust
url = https://github.com/robust-rosin/robust
description = An API for interacting with the ROBUST dataset
classifiers =
Natural Language :: English
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
[options]
python_requires = >= 3.6
install_requires =
gitpython==3.1.9
ruamel.yaml==0.16.12
validators==0.18.1
package_dir =
=lib
packages = find:
[options.packages.find]
where = lib
[flake8]
max-line-length = 79
import-order-style = edited
per-file-ignores =
lib/robust/__init__.py:F401
[tox:tox]
envlist = py36, py37, py38
[testenv]
deps =
-rrequirements.dev.txt
commands =
flake8 lib
mypy lib
[mypy]
ignore_missing_imports = False
disallow_untyped_defs = True
warn_unused_ignores = True
# needed because of ruamel.yaml
# see https://github.com/python/mypy/issues/7276
incremental = False
[mypy-git.*]
ignore_missing_imports = True
[mypy-validators.*]
ignore_missing_imports = True