-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
68 lines (63 loc) · 1.76 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
[metadata]
name = dalec
version = attr: dalec.__version__
url = https://github.com/webu/dalec
author = Webu
author_email = contact@webu.coop
description = Extendable app to retrieve external contents from various external sources.
long_description = file: README.md
long_description_content_type = text/markdown
license = BSD-3-Clause
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Framework :: Django
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Topic :: Internet :: WWW/HTTP
Topic :: Internet :: WWW/HTTP :: Dynamic Content
Topic :: Software Development :: Libraries :: Application Frameworks
Topic :: Software Development :: Libraries :: Python Modules
project_urls =
Source = https://github.com/webu/dalec
Tracker = https://github.com/webu/dalec/issues
[options]
python_requires = >=3.7
packages = find:
include_package_data = true
zip_safe = false
install_requires =
Django>=2.2
[options.extras_require]
testing =
requests
beautifulsoup4
coverage>=3.7.0
black
flake8
mypy
types-requests
[flake8]
exclude = build,.git,.tox,./tests/.env,dalec_prime/migrations,venv
max-line-length = 99
[isort]
combine_as_imports = true
default_section = THIRDPARTY
include_trailing_comma = true
known_first_party = dalec
line_length = 99
multi_line_output = 5
[mypy]
ignore_missing_imports = True
warn_unused_configs = True
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
check_untyped_defs = True
no_implicit_optional = True
warn_redundant_casts = True
no_implicit_reexport = True
strict_equality = True