-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
44 lines (40 loc) · 1016 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
[metadata]
name = pymoodle
version = 0.3.2
author = Nils Kattenbeck
author_email = [email protected]
license = MIT
license_file = LICENSE
description = A python client for Moodle web services
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/septatrix/pymoodle
project_urls =
Bug Tracker = https://github.com/septatrix/pymoodle/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Development Status :: 3 - Alpha
Intended Audience :: Developers
Typing :: Typed
[options]
packages = find:
python_requires = >=3.6
install_requires =
httpx==0.20.*
typing-extensions>=3.7.4;python_version<="3.7"
[options.extras_require]
test =
black
isort
flake8
flake8-bugbear
mypy
later;python_version=="3.7.*"
[options.package_data]
* = py.typed
[flake8]
max-line-length = 88
select = C,E,F,W,B,B901
extend-ignore = E203, E501