From 2e7d7f5b5d53d2043630c6c8e9167cbefdc70458 Mon Sep 17 00:00:00 2001 From: svalouch Date: Wed, 7 Oct 2020 15:37:55 +0200 Subject: [PATCH] fix twig warnings --- README.rst | 2 +- setup.py | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 51c3e00..7a69ba9 100644 --- a/README.rst +++ b/README.rst @@ -82,7 +82,7 @@ One can either get a concrete implementation by calling ``ZFSCli``/``ZFSNative`` more conveniently use the functions ``get_zfs(implementation_name)`` or ``get_zpool(implementation_name)``. First, get an instance: -.. code-block:: python-shell +.. code-block:: pycon >>> from simplezfs import get_zfs >>> zfs = get_zfs('cli') # or "native" for the native API diff --git a/setup.py b/setup.py index 84bceaf..4670b11 100644 --- a/setup.py +++ b/setup.py @@ -7,9 +7,11 @@ with open('README.rst', 'r') as fh: setup( name='simplezfs', version='0.0.1', - author='Andreas Gonschorek, Stefan Valouch', + author='Stefan Valouch', + author_email='svalouch@valouch.com', description='Simple, low-level ZFS API', long_description=long_description, + long_description_content_type='text/x-rst', project_urls={ 'Documentation': 'https://simplezfs.readthedocs.io/', 'Source': 'https://github.com/svalouch/python-simplezfs/', @@ -21,6 +23,7 @@ setup( include_package_data=True, zip_safe=False, license='BSD-3-Clause', + url='https://github.com/svalouch/python-simplezfs', platforms='any', python_requires='>=3.6',