-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.cfg
43 lines (40 loc) · 991 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
[metadata]
name = syncMyMoodle
version = 0.2.1
author = Nils Kattenbeck
author_email = [email protected]
description = Synchronization client for RWTH Moodle
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/Romern/syncMyMoodle
project_urls =
Bug Tracker = https://github.com/Romern/syncMyMoodle/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: OS Independent
Development Status :: 5 - Production/Stable
[options]
packages = find:
python_requires = >=3.6
install_requires =
requests>=2.0.0
beautifulsoup4>=4.0.0
yt-dlp>=2021.12.27
tqdm>=4.0.0
[options.extras_require]
quiz =
pdfkit>=0.6.0
keyring =
keyring>=20.0.0
test =
black
isort
flake8
flake8-bugbear
mypy
types-requests
[flake8]
max-line-length = 88
select = C,E,F,W,B,B901
extend-ignore = E203, E501, W503