forked from akx/shoop-checkoutfi
-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.cfg
56 lines (48 loc) · 1.09 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
[metadata]
name = shuup-checkoutfi
version = 0.6.3.post+gitver
description = Shuup Checkout.fi Integration
long_description = file: README.rst
keywords = stripe, shuup
license = MIT
license_file = LICENSE
[options]
include_package_data = True
packages = find:
[options.extras_require]
shuup = shuup>=1,<2
[options.entry_points]
shuup.addon = shuup_checkoutfi = shuup_checkoutfi
[options.packages.find]
exclude = tests, tests.*
[bdist_wheel]
universal = 1
[tool:pytest]
DJANGO_SETTINGS_MODULE = shuup_checkoutfi_tests.settings
django_find_project = false
norecursedirs = bower_components node_modules .git venv
[flake8]
exclude = .tox,dist,venv,migrations,docs,build,doc
max-line-length = 120
max-complexity = 10
[isort]
atomic=true
combine_as_imports=false
multi_line_output=5
not_skip=__init__.py
length_sort=false
line_length=79
order_by_type=false
wrap_length=79
diff=True
skip=.tox,dist,venv,migrations,docs,build,.egg
known_first_party=shuup_checkoutfi
known_standard_library=token,tokenize,enum,importlib
known_third_party=
django
enumfields
jsonfield
mock
pytest
shuup
six