Skip to content

Commit

Permalink
Merge branch 'main' of github.com:Kataglyphis/WebDavClient
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Heinle committed Dec 16, 2024
2 parents 8a29913 + 17dd3c1 commit 5ede147
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ files from your cloud. This is an easy way to do it

```python
Example usage of the method:
from webdavclient.webdavclient import WebDavClient
from kataglyphis_webdavclient.webdavclient import WebDavClient

hostname = "https://yourhost.de/webdav"
username = "Schlawiner23"
Expand Down Expand Up @@ -142,7 +142,7 @@ This enumeration also includes submodules.

1. Clone the repo
```sh
git clone [email protected]:Kataglyphis/WebDavClient.git
git clone --recurse-submodules [email protected]:Kataglyphis/Kataglyphis-WebDavClient.git
```

## Tests
Expand Down
2 changes: 1 addition & 1 deletion demo/download_markdown_files.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import argparse
from webdavclient import WebDavClient
from kataglyphis-webdavclient import WebDavClient


# Parse command-line arguments
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

sys.path.insert(0, os.path.abspath("../../"))

project = "WebDavClient"
project = "Kataglyphis-WebDavClient"
copyright = "2024, Jonas Heinle"
author = "Jonas Heinle"
release = "0.0.1"
Expand Down
4 changes: 2 additions & 2 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
WebDavClient documentation
Kataglyphis-WebDavClient documentation
==========================

Add your content using ``reStructuredText`` syntax. See the
Expand All @@ -15,7 +15,7 @@ documentation for details.
:maxdepth: 2
:caption: Contents:

webdavclient
kataglyphis_webdavclient

Indices and tables
==================
Expand Down
4 changes: 2 additions & 2 deletions docs/source/webdavclient.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
WebDavClient
Kataglyphis-WebDavClient
============

.. automodule:: webdavclient
.. automodule:: kataglyphis_webdavclient
:members:
:undoc-members:
:show-inheritance:
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ requires = ["setuptools>=70.0"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
py-modules = ["webdavclient"]
py-modules = ["kataglyphis_webdavclient"]

[tool.setuptools.packages.find]
exclude=["test*","models*","data*","docs*","demo*"]

[project]
name = "webdavclient"
name = "kataglyphis_webdavclient"
version = "0.0.1"
authors = [
{ name="Jonas Heinle", email="[email protected]" },
Expand All @@ -31,7 +31,7 @@ classifiers = [

[project.urls]
Homepage = "https://webdavclient.jonas.heinle.de"
Source = "https://github.com/Kataglyphis/WebDavClient"
Source = "https://github.com/Kataglyphis/Kataglyphis-WebDavClient"

[project.optional-dependencies]
dev = [
Expand Down
2 changes: 1 addition & 1 deletion tests/test_webdav_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
import subprocess
import time
import requests
from webdavclient import WebDavClient
from kataglyphis_webdavclient import WebDavClient


def cleanup_test_files() -> None:
Expand Down

0 comments on commit 5ede147

Please sign in to comment.