forked from ajcerejeira/vat-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
70 lines (60 loc) · 1.54 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 = vat-validator
version = 0.1.1
description = VAT validation library
author = Afonso Silva
author-email = [email protected]
license = MIT
license_files = LICENSE.rst
url = https://github.com/ajcerejeira/vat-validator/
project-urls =
Documentation = https://vat-validator.readthedocs.io/
Source = https://github.com/ajcerejeira/vat-validator/
Tracker = https://github.com/ajcerejeira/vat-validator/issues
long-description = file: README.rst
long-description-content-type = text/x-rst; charset=UTF-8
classifiers =
Development Status :: 1 - Planning
Intended Audience :: Developers
Intended Audience :: Financial and Insurance Industry
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Topic :: Office/Business :: Financial
Topic :: Security :: Cryptography
Topic :: Utilities
Typing :: Typed
[options]
packages = find:
python_requires = >=3.5
test_suite = tests
[options.extras_require]
testing =
black
flake8
isort
tox
[flake8]
exclude = .git, *venv*, *dist*, *.tox*
[isort]
skip = .git, venv, dist, .tox
[tox]
envlist = py35, py36, py37, black, docs, flake8, isort
skip_missing_interpreters = true
[testenv]
commands = python setup.py test
deps =
[testenv:black]
commands = black -l 80 .
deps = black
[testenv:docs]
changedir = docs
commands = make html
deps = -r docs/requirements.txt
whitelist_externals = make
[testenv:isort]
commands = isort --check-only
deps = isort
[testenv:lint]
commands = flake8
deps = flake8