-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
56 lines (48 loc) · 1.32 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 = statelint
version = attr: statelint.__version__
description = command-line validator for Amazon States Language
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/taro-kayo/statelint
author = taro-kayo
license = Apache License 2.0
license_file = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
[options]
packages = find:
install_requires =
python-dateutil>=2.8.2
regex>=2023.5.5
python_requires = >=3.8.0
[options.packages.find]
include =
statelint*
[options.entry_points]
console_scripts =
statelint = statelint.cli:main
[options.extras_require]
yaml = PyYAML>=6.0
[bdist_wheel]
universal = 1
[mypy]
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
warn_unused_ignores = true
[mypy-regex]
ignore_missing_imports = true
[mypy-tests.*]
disallow_untyped_defs = false