-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
45 lines (38 loc) · 922 Bytes
/
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
[metadata]
name = omg_scotus
version = 0.0.0
description = this package brings you the latest SCOTUS scuttlebutt
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/iancontijoch/omg-scotus
author = Ian Contijoch
author_email = ian.contijoch@gmail.com
[options]
packages = find:
install_requires =
beautifulsoup4
dateparser
pdfplumber
pre-commit
requests
[options.packages.find]
exclude =
tests*
testing*
[options.entry_points]
console_scripts =
omg-scotus-cli = omg_scotus.main:main
[mypy]
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
[mypy-testing.*]
disallow_untyped_defs = false
[mypy-tests.*]
disallow_untyped_defs = false
[flake8]
exclude = conftest.py, helpers_test.py