Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename python-synology to synologydsm-api #1

Merged
merged 1 commit into from
Nov 19, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ Here is a list of important resources for contributors:
- `Code of Conduct`_

.. _MIT license: https://opensource.org/licenses/MIT
.. _Source Code: https://github.com/ProtoThis/python-synology
.. _Documentation: https://python-synology.readthedocs.io/
.. _Issue Tracker: https://github.com/ProtoThis/python-synology/issues
.. _Source Code: https://github.com/hacf-fr/synologydsm-api
.. _Documentation: https://synologydsm-api.readthedocs.io/
.. _Issue Tracker: https://github.com/hacf-fr/synologydsm-api/issues

How to report a bug
-------------------
Expand Down Expand Up @@ -116,6 +116,6 @@ To run linting and code formatting checks before commiting your change, you can
It is recommended to open an issue before starting work on anything.
This will allow a chance to talk it over with the owners and validate your approach.

.. _pull request: https://github.com/ProtoThis/python-synology/pulls
.. _pull request: https://github.com/hacf-fr/synologydsm-api/pulls
.. github-only
.. _Code of Conduct: CODE_OF_CONDUCT.rst
4 changes: 2 additions & 2 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
The MIT License (MIT)
Copyright (c) 2016 ProtoThis
Copyright (c) 2020 hacf-fr

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
18 changes: 9 additions & 9 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@
Python API for Synology DSM
===========================

.. image:: https://travis-ci.org/ProtoThis/python-synology.svg?branch=master
:target: https://travis-ci.org/ProtoThis/python-synology
.. image:: https://travis-ci.org/hacf-fr/synologydsm-api.svg?branch=master
:target: https://travis-ci.org/hacf-fr/synologydsm-api

.. image:: https://img.shields.io/pypi/v/python-synology.svg
.. image:: https://img.shields.io/pypi/v/synologydsm-api.svg
:alt: Library version
:target: https://pypi.org/project/python-synology
:target: https://pypi.org/project/synologydsm-api

.. image:: https://img.shields.io/pypi/pyversions/python-synology.svg
.. image:: https://img.shields.io/pypi/pyversions/synologydsm-api.svg
:alt: Supported versions
:target: https://pypi.org/project/python-synology
:target: https://pypi.org/project/synologydsm-api

.. image:: https://pepy.tech/badge/python-synology
.. image:: https://pepy.tech/badge/synologydsm-api
:alt: Downloads
:target: https://pypi.org/project/python-synology
:target: https://pypi.org/project/synologydsm-api

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
:alt: Formated with Black
Expand All @@ -27,7 +27,7 @@ Installation

.. code-block:: bash

[sudo] pip install python-synology
[sudo] pip install synologydsm-api


Usage
Expand Down
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[tool.poetry]
name = "python-synology"
name = "synologydsm-api"
version = "1.0.0"
description = "Python API for communication with Synology DSM"
authors = ["Quentin POLLET (Quentame)", "FG van Zeelst (ProtoThis)"]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/ProtoThis/python-synology"
repository = "https://github.com/ProtoThis/python-synology"
documentation = "https://python-synology.readthedocs.io"
homepage = "https://github.com/hacf-fr/synologydsm-api"
repository = "https://github.com/hacf-fr/synologydsm-api"
documentation = "https://synologydsm-api.readthedocs.io"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
Expand All @@ -27,7 +27,7 @@ packages = [
]

[tool.poetry.urls]
Changelog = "https://github.com/ProtoThis/python-synology/releases"
Changelog = "https://github.com/hacf-fr/synologydsm-api/releases"

[tool.poetry.dependencies]
python = "^3.7.0"
Expand Down Expand Up @@ -58,7 +58,7 @@ sphinx-rtd-theme = "^0.5.0"
Pygments = "^2.7.2"

[tool.poetry.scripts]
python-synology = "synology_dsm.__main__:main"
synologydsm-api = "synology_dsm.__main__:main"

[tool.coverage.paths]
source = ["src", "*/site-packages"]
Expand Down
2 changes: 1 addition & 1 deletion scripts/publish.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Publish the library
# https://pypi.org/project/python-synology
# https://pypi.org/project/synologydsm-api
# Publish documentation here: https://packaging.python.org/tutorials/packaging-projects/

./scripts/common.sh
Expand Down
2 changes: 1 addition & 1 deletion src/synology_dsm/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""The python-synology library."""
"""The synologydsm-api library."""
from .synology_dsm import SynologyDSM

__all__ = ["SynologyDSM"]