forked from academic-innovation/django-lti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
54 lines (51 loc) · 1.6 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
[metadata]
name = django-lti
version = attr: lti_tool.__version__
description = LTI tool support for Django
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/academic-innovation/django-lti
project_urls =
Documentation = https://academic-innovation.github.io/django-lti/
classifiers =
Development Status :: 4 - Beta
Framework :: Django :: 4.2
Framework :: Django :: 5.0
Framework :: Django :: 5.1
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
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]
python_requires = >=3.8
install_requires =
django >= 4.2
pylti1p3 >= 2.0
packages = find:
include_package_data = true
zip_safe = false
[options.packages.find]
exclude =
example
tests
tests.*
[flake8]
max-line-length = 88
docstring-convention=google
extend-ignore =
E203,
D100, # Missing docstring in public module
D101, # Missing docstring in public class
D102, # Missing docstring in public method
D103, # Missing docstring in public function
D104, # Missing docstring in public package
D105, # Missing docstring in magic method
D106, # Missing docstring in public nested class
D107, # Missing docstring in __init__
exclude = build/*, env/*, venv/*, .venv/*, .nox, lti_tool/migrations/*