-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
57 lines (53 loc) · 1.44 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
[metadata]
author = msal_requests_auth Contributors
author_email = [email protected]
name = msal_requests_auth
version = attr: msal_requests_auth.__version__
description = Authentication using python requests and MSAL
keywords = msal, requests
long_description = file: README.rst
long_description_content_type = text/x-rst
license = BSD License
license_files = LICENSE
platform = any
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
Natural Language :: English
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3
Topic :: Software Development :: Libraries :: Python Modules
Typing :: Typed
url = https://github.com/corteva/msal-requests-auth
download_url = http://python.org/pypi/msal-requests-auth
[options]
packages = find:
zip_safe = False # https://mypy.readthedocs.io/en/stable/installed_packages.html
python_requires = >=3.10
include_package_data = True
install_requires =
platformdirs
msal
pyperclip
requests
[options.package_data]
msal_requests_auth =
py.typed
[options.packages.find]
include = msal_requests_auth*
[options.extras_require]
keyring =
keyring
dev =
pytest
pytest-cov
pre-commit
pylint
all =
%(keyring)s
%(dev)s