forked from suutari-ai/shuup-stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
58 lines (50 loc) · 1.12 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
[metadata]
name = shuup-stripe
version = 0.9.5.post+gitver
description = Stripe Checkout integration for Shuup
long_description = file: README.rst
keywords = stripe, shuup
[options]
include_package_data = True
packages = find:
install_requires =
stripe>=1.78.0,<2
django-environ>=0.4.3,<1
[options.extras_require]
shuup = shuup>=0.5,<2
[options.entry_points]
shuup.addon = shuup_stripe = shuup_stripe
[options.packages.find]
exclude = tests, tests.*
[bdist_wheel]
universal = 1
[flake8]
exclude = .tox,dist,venv,migrations,docs,build,doc
max-line-length = 120
max-complexity = 10
[tool:pytest]
DJANGO_SETTINGS_MODULE = shuup_stripe_tests.settings
django_find_project = false
norecursedirs = bower_components node_modules .git venv
[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
known_first_party=shuup_stripe
known_standard_library=token,tokenize,enum,importlib
known_third_party=
django
enumfields
jsonfield
mock
pytest
shuup
six
stripe