python3-cyberfusion-nextcloud-support 1.1.1.2__tar.gz → 1.1.1.2.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (17) hide show
  1. {python3-cyberfusion-nextcloud-support-1.1.1.2 → python3_cyberfusion_nextcloud_support-1.1.1.2.2}/PKG-INFO +4 -11
  2. {python3-cyberfusion-nextcloud-support-1.1.1.2 → python3_cyberfusion_nextcloud_support-1.1.1.2.2}/README.md +0 -6
  3. python3_cyberfusion_nextcloud_support-1.1.1.2.2/pyproject.toml +18 -0
  4. {python3-cyberfusion-nextcloud-support-1.1.1.2 → python3_cyberfusion_nextcloud_support-1.1.1.2.2}/src/cyberfusion/NextCloudSupport/instance.py +4 -4
  5. {python3-cyberfusion-nextcloud-support-1.1.1.2 → python3_cyberfusion_nextcloud_support-1.1.1.2.2}/src/python3_cyberfusion_nextcloud_support.egg-info/PKG-INFO +4 -11
  6. {python3-cyberfusion-nextcloud-support-1.1.1.2 → python3_cyberfusion_nextcloud_support-1.1.1.2.2}/src/python3_cyberfusion_nextcloud_support.egg-info/SOURCES.txt +0 -1
  7. python3-cyberfusion-nextcloud-support-1.1.1.2/pyproject.toml +0 -21
  8. python3-cyberfusion-nextcloud-support-1.1.1.2/setup.py +0 -26
  9. {python3-cyberfusion-nextcloud-support-1.1.1.2 → python3_cyberfusion_nextcloud_support-1.1.1.2.2}/setup.cfg +0 -0
  10. {python3-cyberfusion-nextcloud-support-1.1.1.2 → python3_cyberfusion_nextcloud_support-1.1.1.2.2}/src/cyberfusion/NextCloudSupport/__init__.py +0 -0
  11. {python3-cyberfusion-nextcloud-support-1.1.1.2 → python3_cyberfusion_nextcloud_support-1.1.1.2.2}/src/cyberfusion/NextCloudSupport/_occ.py +0 -0
  12. {python3-cyberfusion-nextcloud-support-1.1.1.2 → python3_cyberfusion_nextcloud_support-1.1.1.2.2}/src/cyberfusion/NextCloudSupport/app.py +0 -0
  13. {python3-cyberfusion-nextcloud-support-1.1.1.2 → python3_cyberfusion_nextcloud_support-1.1.1.2.2}/src/cyberfusion/NextCloudSupport/exceptions.py +0 -0
  14. {python3-cyberfusion-nextcloud-support-1.1.1.2 → python3_cyberfusion_nextcloud_support-1.1.1.2.2}/src/cyberfusion/NextCloudSupport/user.py +0 -0
  15. {python3-cyberfusion-nextcloud-support-1.1.1.2 → python3_cyberfusion_nextcloud_support-1.1.1.2.2}/src/python3_cyberfusion_nextcloud_support.egg-info/dependency_links.txt +0 -0
  16. {python3-cyberfusion-nextcloud-support-1.1.1.2 → python3_cyberfusion_nextcloud_support-1.1.1.2.2}/src/python3_cyberfusion_nextcloud_support.egg-info/requires.txt +0 -0
  17. {python3-cyberfusion-nextcloud-support-1.1.1.2 → python3_cyberfusion_nextcloud_support-1.1.1.2.2}/src/python3_cyberfusion_nextcloud_support.egg-info/top_level.txt +0 -0
@@ -1,12 +1,11 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python3-cyberfusion-nextcloud-support
3
- Version: 1.1.1.2
3
+ Version: 1.1.1.2.2
4
4
  Summary: Library for NextCloud.
5
- Home-page: https://github.com/CyberfusionIO/python3-cyberfusion-nextcloud-support
6
- Author: Cyberfusion
7
- Author-email: support@cyberfusion.io
8
- Platform: linux
5
+ Author-email: Cyberfusion <support@cyberfusion.io>
6
+ Project-URL: Source, https://github.com/CyberfusionIO/python3-cyberfusion-nextcloud-support
9
7
  Description-Content-Type: text/markdown
8
+ Requires-Dist: python3-cyberfusion-common~=2.10
10
9
 
11
10
  # python3-cyberfusion-nextcloud-support
12
11
 
@@ -20,12 +19,6 @@ Run the following command to install the package from PyPI:
20
19
 
21
20
  pip3 install python3-cyberfusion-nextcloud-support
22
21
 
23
- ## Generic
24
-
25
- Run the following command to create a source distribution:
26
-
27
- python3 setup.py sdist
28
-
29
22
  Next, install the following software:
30
23
 
31
24
  * PHP (see https://docs.nextcloud.com/server/latest/admin_manual/installation/php_configuration.html)
@@ -10,12 +10,6 @@ Run the following command to install the package from PyPI:
10
10
 
11
11
  pip3 install python3-cyberfusion-nextcloud-support
12
12
 
13
- ## Generic
14
-
15
- Run the following command to create a source distribution:
16
-
17
- python3 setup.py sdist
18
-
19
13
  Next, install the following software:
20
14
 
21
15
  * PHP (see https://docs.nextcloud.com/server/latest/admin_manual/installation/php_configuration.html)
@@ -0,0 +1,18 @@
1
+ [build-system]
2
+ requires = ["setuptools"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "python3-cyberfusion-nextcloud-support"
7
+ version = "1.1.1.2.2"
8
+ description = "Library for NextCloud."
9
+ readme = "README.md"
10
+ authors = [
11
+ { name = "Cyberfusion", email = "support@cyberfusion.io" },
12
+ ]
13
+ dependencies = [
14
+ "python3-cyberfusion-common~=2.10",
15
+ ]
16
+
17
+ [project.urls]
18
+ "Source" = "https://github.com/CyberfusionIO/python3-cyberfusion-nextcloud-support"
@@ -55,9 +55,7 @@ class Instance:
55
55
  self.path = path
56
56
 
57
57
  @staticmethod
58
- def download(
59
- destination_path: str, zip_path: Optional[str] = None
60
- ) -> None:
58
+ def download(destination_path: str, zip_path: Optional[str] = None) -> None:
61
59
  """Download NextCloud to path.
62
60
 
63
61
  If zip_path is not set, NextCloud is downloaded from their website.
@@ -139,7 +137,9 @@ class Instance:
139
137
 
140
138
  raise AppNotInstalledError
141
139
 
142
- def get_system_config(self, name: str) -> Union[
140
+ def get_system_config(
141
+ self, name: str
142
+ ) -> Union[
143
143
  str,
144
144
  int,
145
145
  float,
@@ -1,12 +1,11 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python3-cyberfusion-nextcloud-support
3
- Version: 1.1.1.2
3
+ Version: 1.1.1.2.2
4
4
  Summary: Library for NextCloud.
5
- Home-page: https://github.com/CyberfusionIO/python3-cyberfusion-nextcloud-support
6
- Author: Cyberfusion
7
- Author-email: support@cyberfusion.io
8
- Platform: linux
5
+ Author-email: Cyberfusion <support@cyberfusion.io>
6
+ Project-URL: Source, https://github.com/CyberfusionIO/python3-cyberfusion-nextcloud-support
9
7
  Description-Content-Type: text/markdown
8
+ Requires-Dist: python3-cyberfusion-common~=2.10
10
9
 
11
10
  # python3-cyberfusion-nextcloud-support
12
11
 
@@ -20,12 +19,6 @@ Run the following command to install the package from PyPI:
20
19
 
21
20
  pip3 install python3-cyberfusion-nextcloud-support
22
21
 
23
- ## Generic
24
-
25
- Run the following command to create a source distribution:
26
-
27
- python3 setup.py sdist
28
-
29
22
  Next, install the following software:
30
23
 
31
24
  * PHP (see https://docs.nextcloud.com/server/latest/admin_manual/installation/php_configuration.html)
@@ -1,7 +1,6 @@
1
1
  README.md
2
2
  pyproject.toml
3
3
  setup.cfg
4
- setup.py
5
4
  src/cyberfusion/NextCloudSupport/__init__.py
6
5
  src/cyberfusion/NextCloudSupport/_occ.py
7
6
  src/cyberfusion/NextCloudSupport/app.py
@@ -1,21 +0,0 @@
1
- [tool.isort]
2
- profile = "black"
3
- line_length = 79
4
- known_first_party = ["cyberfusion"]
5
- default_section = "THIRDPARTY"
6
-
7
- [tool.black]
8
- line-length = 79
9
- exclude = '''
10
- (
11
- /(
12
- \.eggs # exclude a few common directories in the
13
- | \.git # root of the project
14
- | \.hg
15
- | \.mypy_cache
16
- | \.tox
17
- | \.venv
18
- | venv
19
- )/
20
- )
21
- '''
@@ -1,26 +0,0 @@
1
- """A setuptools based setup module."""
2
-
3
- from setuptools import setup
4
-
5
- with open("README.md", "r", encoding="utf-8") as fh:
6
- long_description = fh.read()
7
-
8
- setup(
9
- name="python3-cyberfusion-nextcloud-support",
10
- version="1.1.1.2",
11
- description="Library for NextCloud.",
12
- long_description=long_description,
13
- long_description_content_type="text/markdown",
14
- author="Cyberfusion",
15
- author_email="support@cyberfusion.io",
16
- url="https://github.com/CyberfusionIO/python3-cyberfusion-nextcloud-support",
17
- platforms=["linux"],
18
- packages=[
19
- "cyberfusion.NextCloudSupport",
20
- ],
21
- package_dir={"": "src"},
22
- data_files=[],
23
- install_requires=[
24
- "python3-cyberfusion-common~=2.10",
25
- ],
26
- )