Skip to content

Commit de6539c

Browse files
authored
Merge pull request #35 from microsoft/user/suyask/file-header
Add Microsoft Copyright header to all source files + Create dedicated Contributing.md file
2 parents 3eab669 + 588e295 commit de6539c

20 files changed

Lines changed: 68 additions & 11 deletions

CONTRIBUTING.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Contributing
2+
3+
This project welcomes contributions and suggestions. Most contributions require you to agree to a
4+
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
5+
the rights to use your contribution. For details, visit [Contributor License Agreements](https://cla.opensource.microsoft.com).
6+
7+
When you submit a pull request, a CLA bot will automatically determine whether you need to provide
8+
a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions
9+
provided by the bot. You will only need to do this once across all repos using our CLA.
10+
11+
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
12+
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
13+
contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.

README.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -355,17 +355,7 @@ VS Code Tasks
355355

356356
## Contributing
357357

358-
This project welcomes contributions and suggestions. Most contributions require you to agree to a
359-
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
360-
the rights to use your contribution. For details, visit [Contributor License Agreements](https://cla.opensource.microsoft.com).
361-
362-
When you submit a pull request, a CLA bot will automatically determine whether you need to provide
363-
a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions
364-
provided by the bot. You will only need to do this once across all repos using our CLA.
365-
366-
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
367-
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
368-
contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
358+
See [CONTRIBUTING.md](CONTRIBUTING.md) for contribution guidelines.
369359

370360
## Trademarks
371361

examples/quickstart.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
import sys
25
from pathlib import Path
36
import os

examples/quickstart_file_upload.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
import sys
25
from pathlib import Path
36
import os

examples/quickstart_pandas.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
import sys
25
from pathlib import Path
36
import os

src/dataverse_sdk/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
"""
25
Microsoft Dataverse SDK for Python.
36

src/dataverse_sdk/__version__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
"""Version information for dataverse-client-python package."""
25

36
__version__ = "0.1.0"

src/dataverse_sdk/auth.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
from __future__ import annotations
25

36
from dataclasses import dataclass

src/dataverse_sdk/client.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
from __future__ import annotations
25

36
from typing import Any, Dict, Optional, Union, List, Iterable

src/dataverse_sdk/config.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
from __future__ import annotations
25

36
from dataclasses import dataclass

0 commit comments

Comments
 (0)