malva-client 0.0.1__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.
@@ -0,0 +1,38 @@
1
+ Metadata-Version: 2.4
2
+ Name: malva-client
3
+ Version: 0.0.1
4
+ Summary: Malva Client for the Malva Index
5
+ Home-page: https://github.com/malva-bio/malva-client
6
+ Author: Daniel León-Periñán
7
+ Author-email: Daniel León-Periñán <daniel.leonperinan@mdc-berlin.de>
8
+ License: MIT
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Operating System :: OS Independent
13
+ Classifier: Programming Language :: Python :: 3
14
+ Requires-Python: >=3.7
15
+ Description-Content-Type: text/markdown
16
+ Dynamic: author
17
+ Dynamic: home-page
18
+ Dynamic: requires-python
19
+
20
+ # Malva Client
21
+
22
+ 🚧 **This package is currently under development** 🚧
23
+
24
+ Malva Client will be here very soon
25
+
26
+ ## Installation
27
+
28
+ ```bash
29
+ pip install malva_client
30
+ ```
31
+
32
+ ## Contact
33
+
34
+ For questions or suggestions, please contact [daniel.leonperinan@mdc-berlin.de](mailto:daniel.leonperinan@mdc-berlin.de).
35
+
36
+ ## License
37
+
38
+ Copyright 2025 Malva
@@ -0,0 +1,19 @@
1
+ # Malva Client
2
+
3
+ 🚧 **This package is currently under development** 🚧
4
+
5
+ Malva Client will be here very soon
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ pip install malva_client
11
+ ```
12
+
13
+ ## Contact
14
+
15
+ For questions or suggestions, please contact [daniel.leonperinan@mdc-berlin.de](mailto:daniel.leonperinan@mdc-berlin.de).
16
+
17
+ ## License
18
+
19
+ Copyright 2025 Malva
@@ -0,0 +1,18 @@
1
+ """
2
+ Malva Client for the Malva Index
3
+ """
4
+
5
+ __version__ = "0.0.1"
6
+ __author__ = "Daniel León-Periñán"
7
+ __email__ = "daniel.leonperinan@mdc-berlin.de"
8
+
9
+ def run_malva_client():
10
+ """
11
+ A function to say we will be there soon
12
+
13
+ Returns:
14
+ str: A message
15
+ """
16
+ return "Malva Client will be here soon!"
17
+
18
+ __all__ = ["run_malva_client"]
@@ -0,0 +1,38 @@
1
+ Metadata-Version: 2.4
2
+ Name: malva-client
3
+ Version: 0.0.1
4
+ Summary: Malva Client for the Malva Index
5
+ Home-page: https://github.com/malva-bio/malva-client
6
+ Author: Daniel León-Periñán
7
+ Author-email: Daniel León-Periñán <daniel.leonperinan@mdc-berlin.de>
8
+ License: MIT
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Operating System :: OS Independent
13
+ Classifier: Programming Language :: Python :: 3
14
+ Requires-Python: >=3.7
15
+ Description-Content-Type: text/markdown
16
+ Dynamic: author
17
+ Dynamic: home-page
18
+ Dynamic: requires-python
19
+
20
+ # Malva Client
21
+
22
+ 🚧 **This package is currently under development** 🚧
23
+
24
+ Malva Client will be here very soon
25
+
26
+ ## Installation
27
+
28
+ ```bash
29
+ pip install malva_client
30
+ ```
31
+
32
+ ## Contact
33
+
34
+ For questions or suggestions, please contact [daniel.leonperinan@mdc-berlin.de](mailto:daniel.leonperinan@mdc-berlin.de).
35
+
36
+ ## License
37
+
38
+ Copyright 2025 Malva
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ setup.py
4
+ malva_client/__init__.py
5
+ malva_client.egg-info/PKG-INFO
6
+ malva_client.egg-info/SOURCES.txt
7
+ malva_client.egg-info/dependency_links.txt
8
+ malva_client.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ malva_client
@@ -0,0 +1,21 @@
1
+ [build-system]
2
+ requires = ["setuptools>=45", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "malva-client"
7
+ version = "0.0.1"
8
+ description = "Malva Client for the Malva Index"
9
+ readme = "README.md"
10
+ requires-python = ">=3.7"
11
+ license = {text = "MIT"}
12
+ authors = [
13
+ {name = "Daniel León-Periñán", email = "daniel.leonperinan@mdc-berlin.de"}
14
+ ]
15
+ classifiers = [
16
+ "Development Status :: 1 - Planning",
17
+ "Intended Audience :: Developers",
18
+ "License :: OSI Approved :: MIT License",
19
+ "Operating System :: OS Independent",
20
+ "Programming Language :: Python :: 3",
21
+ ]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,30 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ with open("README.md", "r", encoding="utf-8") as fh:
4
+ long_description = fh.read()
5
+
6
+ setup(
7
+ name="malva-client",
8
+ version="0.0.1",
9
+ author="Daniel León-Periñán",
10
+ author_email="daniel.leonperinan@mdc-berlin.de",
11
+ description="Malva Client for the Malva Index",
12
+ long_description=long_description,
13
+ long_description_content_type="text/markdown",
14
+ url="https://github.com/malva-bio/malva-client",
15
+ packages=find_packages(),
16
+ classifiers=[
17
+ "Development Status :: 1 - Planning",
18
+ "Intended Audience :: Developers",
19
+ "License :: OSI Approved :: MIT License",
20
+ "Operating System :: OS Independent",
21
+ "Programming Language :: Python :: 3",
22
+ "Programming Language :: Python :: 3.7",
23
+ "Programming Language :: Python :: 3.8",
24
+ "Programming Language :: Python :: 3.9",
25
+ "Programming Language :: Python :: 3.10",
26
+ "Programming Language :: Python :: 3.11",
27
+ ],
28
+ python_requires=">=3.7",
29
+ install_requires=[],
30
+ )