File tree Expand file tree Collapse file tree 4 files changed +13
-9
lines changed
Expand file tree Collapse file tree 4 files changed +13
-9
lines changed Original file line number Diff line number Diff line change 6060 run : |
6161 python -m pytest --cov-report term-missing --cov=msal_requests_auth --cov-report xml
6262
63+ - name : Dist Check
64+ shell : bash
65+ run : |
66+ python -m pip install twine build
67+ python -m build
68+ twine check --strict dist/*
69+
6370 - uses : codecov/codecov-action@v1
Original file line number Diff line number Diff line change @@ -51,8 +51,8 @@ Device Code Flow
5151 To disable, either set `headless=True ` when initializing `DeviceCodeAuth `
5252 or set the environment variable `MSAL_REQUESTS_AUTH_HEADLESS ` to `true `.
5353
54- .. versionadded :: 0.2.0 headless
55- .. versionadded :: 0.6.0 MSAL_REQUESTS_AUTH_HEADLESS environment variable
54+ - New in version 0.2.0: headless
55+ - New in version 0.6.0: MSAL_REQUESTS_AUTH_HEADLESS environment variable
5656
5757
5858.. code-block :: python
Original file line number Diff line number Diff line change 22author = msal_requests_auth Contributors
33author_email = alansnow21@gmail.com
44name = msal_requests_auth
5+ version = attr: msal_requests_auth.__version__
56description = Authentication using python requests and MSAL
67keywords = msal, requests
78long_description = file: README.rst
9+ long_description_content_type = text/x-rst
810license = BSD License
9- license_file = LICENSE
11+ license_files = LICENSE
1012platform = any
1113classifiers =
1214 Development Status :: 2 - Pre-Alpha
5052 pylint
5153all =
5254 %(dev)s
53-
54- [bdist_wheel]
55- universal = 1
Original file line number Diff line number Diff line change 11#!/usr/bin/env python
22from setuptools import setup
33
4- from msal_requests_auth import __version__
5-
6- setup (version = __version__ )
4+ setup ()
You can’t perform that action at this time.
0 commit comments