forked from maykinmedia/json-logic-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
99 lines (87 loc) · 1.94 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# setuptools config
# see http://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
[metadata]
name = maykin-json-logic-py
version = 0.13.0
description = Build complex rules, serialize them as JSON, and execute them in Python
long_description = file: README.rst
url = https://github.com/maykinmedia/json-logic-py
license = MIT
author = nadir.izr,maykin
author_email = [email protected],[email protected]
keywords = jsonLogic
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
Operating System :: Unix
Operating System :: MacOS
Operating System :: Microsoft :: Windows
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Software Development :: Libraries :: Python Modules
[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires =
isodate
tests_require =
tox
pytest-cov
freezegun
isort
black
flake8
coverage
[options.extras_require]
tests =
tox
pytest-cov
freezegun
isort
black
flake8
coverage
pep8 = flake8
coverage = coverage
release =
bumpversion
twine
[options.packages.find]
exclude =
tests
tests.*
# 3rd party configuration
[aliases]
test=pytest
[isort]
combine_as_imports = true
default_section = THIRDPARTY
include_trailing_comma = true
line_length = 88
multi_line_output = 3
skip = env,.tox,.history,.eggs
known_first_party=json_logic
[tool:pytest]
testpaths = tests/
markers =
unsupported_operators: specify unsupported operator names for the shared tests
unsupported_logic: specify unsupported logic expressions for the shared tests
[pep8]
[flake8]
max-line-length=119
exclude=env,.tox
ignore=E203
[coverage:run]
source =
json_logic
branch = True
[coverage:report]
exclude_lines =
no cov
no qa
noqa
pragma: no cover
if __name__ == .__main__.:
[coverage:xml]
output=coverage.xml