chainlib

Generic blockchain access library and tooling
Log | Files | Refs | README | LICENSE

commit 39478d9c3c30210b64a1f3f3f26f33fef2946a40
parent 24d7c078e85bc574c938dc95d37e0187b251ea25
Author: nolash <dev@holbrook.no>
Date:   Mon,  8 Nov 2021 07:49:02 +0100

Add bluto package info renderer

Diffstat:
A.bluto/bluto.deb.ini | 17+++++++++++++++++
A.bluto/bluto.ini | 18++++++++++++++++++
A.bluto/bluto.py.ini | 6++++++
A.bluto/bluto.tag | 11+++++++++++
Msetup.cfg | 29++++++++++++-----------------
Msetup.py | 9++++++++-
6 files changed, 72 insertions(+), 18 deletions(-)

diff --git a/.bluto/bluto.deb.ini b/.bluto/bluto.deb.ini @@ -0,0 +1,17 @@ +[main:deb] +standards_version=3.8.5 +priority=optional +engine=9 + +[dep:deb-build] +debhelper=>=9 +python3=>=3.8 +python3-setuptools=0 +dh-python=0 + +[dep:deb-install] +dpkg=0 +python3=>=3.8 + +[dep:deb-exec] +make=0 diff --git a/.bluto/bluto.ini b/.bluto/bluto.ini @@ -0,0 +1,18 @@ +[main] +name = chainlib +version = 0.0.10 +summary = Generic blockchain access library and tooling + +[author:lash] +name = Louis Holbrook +email = dev@holbrook.no +pgp=0826EDA1702D1E87C6E2875121D2E7BB88C2A746 + +[locate:git] +url = https://gitlab.com/chaintools/chainlib + +[locate:lash] +url=https://holbrook.no + +[license] +WTFPL=2 diff --git a/.bluto/bluto.py.ini b/.bluto/bluto.py.ini @@ -0,0 +1,6 @@ +[main:py] +include_data = 1 +packages = chainlib,chainlib.cli + +[dep:py-exec] +python=>=3.6 diff --git a/.bluto/bluto.tag b/.bluto/bluto.tag @@ -0,0 +1,11 @@ +dlt +blockchain +cryptocurrency +Programming Language :: Python :: 3 +Operating System :: OS Independent +Development Status :: 3 - Alpha +Topic :: Software Development :: Libraries +Environment :: Console +Intended Audience :: Developers +License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+) +Topic :: Internet diff --git a/setup.cfg b/setup.cfg @@ -1,10 +1,16 @@ +; Config::Simple 4.59 +; Mon Nov 8 05:19:17 2021 + [metadata] -name = chainlib -version = 0.0.10 -description = Generic blockchain access library and tooling -author = Louis Holbrook -author_email = dev@holbrook.no -url = https://gitlab.com/chaintools/chainlib +name=chainlib +license=WTFPL2 +author_email=dev@holbrook.no +description=Generic blockchain access library and tooling +version=0.0.10 +url=https://gitlab.com/chaintools/chainlib +author=Louis Holbrook + + keywords = dlt blockchain @@ -18,14 +24,3 @@ classifiers = Intended Audience :: Developers License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+) Topic :: Internet -license = GPL3 -licence_files = - LICENSE.txt - - -[options] -python_requires = >= 3.6 -include_package_data = True -packages = - chainlib - chainlib.cli diff --git a/setup.py b/setup.py @@ -16,5 +16,12 @@ setup( install_requires=requirements, extras_require={ 'xdg': "pyxdg~=0.27", - } + }, + license_files= ('LICENSE.txt',), + python_requires = '>=3.8', + include_package_data = True, + packages = [ + 'chainlib', + 'chainlib.cli', + ], )