|
| 1 | +[build-system] |
| 2 | +# Minimum requirements for the build system to execute. |
| 3 | +requires = ["setuptools", "wheel"] |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "msal_requests_auth" |
| 7 | +dynamic = ["version"] |
| 8 | +description = "Authentication using python requests and MSAL" |
| 9 | +maintainers = [ |
| 10 | + {name = "msal_requests_auth Contributors"}, |
| 11 | +] |
| 12 | +keywords = [ |
| 13 | + "authenticate", |
| 14 | + "msal", |
| 15 | + "microsoft", |
| 16 | + "requests", |
| 17 | +] |
| 18 | +readme = "README.rst" |
| 19 | +license = {text = "BSD-3-Clause"} |
| 20 | +classifiers = [ |
| 21 | + "Development Status :: 4 - Beta", |
| 22 | + "Intended Audience :: Developers", |
| 23 | + "Natural Language :: English", |
| 24 | + "License :: OSI Approved :: BSD License", |
| 25 | + "Operating System :: OS Independent", |
| 26 | + "Topic :: Scientific/Engineering :: GIS", |
| 27 | + "Programming Language :: Python", |
| 28 | + "Programming Language :: Python :: 3.10", |
| 29 | + "Programming Language :: Python :: 3.11", |
| 30 | + "Programming Language :: Python :: 3.12", |
| 31 | + "Programming Language :: Python :: 3.13", |
| 32 | + "Programming Language :: Python :: 3.14", |
| 33 | + "Programming Language :: Python :: 3", |
| 34 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 35 | + "Typing :: Typed", |
| 36 | +] |
| 37 | +requires-python = ">=3.10" |
| 38 | +dependencies = [ |
| 39 | + "platformdirs", |
| 40 | + "msal", |
| 41 | + "pyperclip", |
| 42 | + "requests" |
| 43 | +] |
| 44 | + |
| 45 | +[project.optional-dependencies] |
| 46 | +keyring = ["keyring"] |
| 47 | +all = ["msal_requests_auth[keyring]"] |
| 48 | + |
| 49 | +[tool.setuptools.dynamic] |
| 50 | +version = {attr = "msal_requests_auth.__version__"} |
| 51 | + |
| 52 | +[dependency-groups] |
| 53 | +test = [ |
| 54 | + "pytest>=3.6", |
| 55 | + "pytest-cov", |
| 56 | +] |
| 57 | +type = [ |
| 58 | + "mypy", |
| 59 | + "types-requests", |
| 60 | +] |
| 61 | +lint = [ |
| 62 | + "pylint" |
| 63 | +] |
| 64 | +dev = [ |
| 65 | + "pre-commit", |
| 66 | + {include-group = "test"}, |
| 67 | + {include-group = "type"}, |
| 68 | + {include-group = "lint"} |
| 69 | +] |
| 70 | + |
| 71 | +[project.urls] |
| 72 | +repository = " https://github.com/corteva/msal-requests-auth" |
| 73 | + |
| 74 | + |
| 75 | +[tool.setuptools.packages.find] |
| 76 | +include = ["msal_requests_auth", "msal_requests_auth.*"] |
| 77 | + |
| 78 | +[options.package_data] |
| 79 | +msal_requests_auth = [ |
| 80 | + "py.typed", |
| 81 | +] |
| 82 | + |
| 83 | +[tool.black] |
| 84 | +target_version = ["py310"] |
0 commit comments