Skip to content

Commit b7a62e5

Browse files
committed
normalize package name for PyPI wheel compliance, rename references
1 parent afcd02b commit b7a62e5

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.github/CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Treat each other well
22

3-
Everyone participating in the _Office365-REST-Python-Client_ project, and in particular in the issue tracker,
3+
Everyone participating in the _office365-rest-python-client_ project, and in particular in the issue tracker,
44
pull requests, and social media activity, is expected to treat other people with respect
55
and more generally to follow the guidelines articulated in the
66
[Python Community Code of Conduct](https://www.python.org/psf/codeofconduct/).

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ script:
1010
- python setup.py test
1111
stages:
1212
- name: test
13-
if: repo = "vgrem/Office365-REST-Python-Client"
13+
if: repo = "vgrem/office365-rest-python-client"
1414
- name: deploy
1515
jobs:
1616
include:
@@ -25,4 +25,4 @@ jobs:
2525
on:
2626
tags: true
2727
python: 3.6
28-
repo: vgrem/Office365-REST-Python-Client
28+
repo: vgrem/office365-rest-python-client

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,23 @@ Microsoft 365 & Microsoft Graph library for Python
1414

1515
## Status
1616
[![Downloads](https://pepy.tech/badge/office365-rest-python-client/month)](https://pepy.tech/project/office365-rest-python-client)
17-
[![PyPI](https://img.shields.io/pypi/v/Office365-REST-Python-Client.svg)](https://pypi.python.org/pypi/Office365-REST-Python-Client)
18-
[![PyPI pyversions](https://img.shields.io/pypi/pyversions/Office365-REST-Python-Client.svg)](https://pypi.python.org/pypi/Office365-REST-Python-Client/)
19-
[![Build Status](https://travis-ci.com/vgrem/Office365-REST-Python-Client.svg?branch=master)](https://travis-ci.com/vgrem/Office365-REST-Python-Client)
17+
[![PyPI](https://img.shields.io/pypi/v/office365-rest-python-client.svg)](https://pypi.python.org/pypi/office365-rest-python-client)
18+
[![PyPI pyversions](https://img.shields.io/pypi/pyversions/office365-rest-python-client.svg)](https://pypi.python.org/pypi/office365-rest-python-client/)
19+
[![Build Status](https://travis-ci.com/vgrem/office365-rest-python-client.svg?branch=master)](https://travis-ci.com/vgrem/office365-rest-python-client)
2020

2121
# Installation
2222

2323
Use pip:
2424

2525
```
26-
pip install Office365-REST-Python-Client
26+
pip install office365-rest-python-client
2727
```
2828

2929
### Note
3030
>
3131
>Alternatively the _latest_ version could be directly installed via GitHub:
3232
>```
33-
>pip install git+https://github.com/vgrem/Office365-REST-Python-Client.git
33+
>pip install git+https://github.com/vgrem/office365-rest-python-client.git
3434
>```
3535
3636
# Authentication
@@ -74,7 +74,7 @@ Steps to access:
7474
7575
Documentation:
7676
- [Granting access using SharePoint App-Only](https://docs.microsoft.com/en-us/sharepoint/dev/solution-guidance/security-apponly-azureacs)
77-
- [wiki](https://github.com/vgrem/Office365-REST-Python-Client/wiki/How-to-connect-to-SharePoint-Online-and-and-SharePoint-2013-2016-2019-on-premises--with-app-principal)
77+
- [wiki](https://github.com/vgrem/office365-rest-python-client/wiki/How-to-connect-to-SharePoint-Online-and-and-SharePoint-2013-2016-2019-on-premises--with-app-principal)
7878
7979
Example: [connect_with_app_principal.py](examples/sharepoint/auth_app_only.py)
8080
@@ -92,7 +92,7 @@ Steps to access:
9292
9393
Documentation:
9494
- [Granting access via Azure AD App-Only](https://docs.microsoft.com/en-us/sharepoint/dev/solution-guidance/security-apponly-azuread)
95-
- [wiki](https://github.com/vgrem/Office365-REST-Python-Client/wiki/How-to-connect-to-SharePoint-Online-with-certificate-credentials)
95+
- [wiki](https://github.com/vgrem/office365-rest-python-client/wiki/How-to-connect-to-SharePoint-Online-with-certificate-credentials)
9696
9797
Example: [with_certificate.py](examples/sharepoint/auth_certificate.py)
9898

examples/sharepoint/auth_certificate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
https://learn.microsoft.com/en-us/sharepoint/dev/solution-guidance/security-apponly-azuread
1010
1111
Refer wiki for a more details:
12-
https://github.com/vgrem/Office365-REST-Python-Client/wiki/
12+
https://github.com/vgrem/office365-rest-python-client/wiki/
1313
How-to-connect-to-SharePoint-Online-with-certificate-credentials
1414
"""
1515

examples/sharepoint/auth_certificate_passphrase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
https://learn.microsoft.com/en-us/sharepoint/dev/solution-guidance/security-apponly-azuread
1010
1111
Refer wiki for a more details:
12-
https://github.com/vgrem/Office365-REST-Python-Client/wiki/
12+
https://github.com/vgrem/office365-rest-python-client/wiki/
1313
How-to-connect-to-SharePoint-Online-with-certificate-credentials
1414
1515
To create a self signed certificate with encrypted private key run:

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ msal==1.28.0
55
pytz==2021.1
66
# The codebase uses "Self" and "Required" available in the typing module
77
# since Python 3.11. Therefore, typing_extensions is required as long
8-
# as Office365-REST-Python-Client supports Python versions < 3.11.
8+
# as office365-rest-python-client supports Python versions < 3.11.
99
# On Python versions >= 3.11, typing_extensions re-exports these names
1010
# from the standard library typing module.
1111
typing_extensions>=4.0.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
description="Microsoft 365 & Microsoft Graph Library for Python",
1818
long_description=long_description,
1919
long_description_content_type="text/markdown",
20-
url="https://github.com/vgrem/Office365-REST-Python-Client",
20+
url="https://github.com/vgrem/office365-rest-python-client",
2121
install_requires=[
2222
"requests",
2323
"msal",

0 commit comments

Comments
 (0)