Add bluto package info renderer
This commit is contained in:
parent
24d7c078e8
commit
39478d9c3c
17
.bluto/bluto.deb.ini
Normal file
17
.bluto/bluto.deb.ini
Normal file
@ -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
|
18
.bluto/bluto.ini
Normal file
18
.bluto/bluto.ini
Normal file
@ -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
|
6
.bluto/bluto.py.ini
Normal file
6
.bluto/bluto.py.ini
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
[main:py]
|
||||||
|
include_data = 1
|
||||||
|
packages = chainlib,chainlib.cli
|
||||||
|
|
||||||
|
[dep:py-exec]
|
||||||
|
python=>=3.6
|
11
.bluto/bluto.tag
Normal file
11
.bluto/bluto.tag
Normal file
@ -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
|
23
setup.cfg
23
setup.cfg
@ -1,10 +1,16 @@
|
|||||||
|
; Config::Simple 4.59
|
||||||
|
; Mon Nov 8 05:19:17 2021
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
name=chainlib
|
name=chainlib
|
||||||
version = 0.0.10
|
license=WTFPL2
|
||||||
description = Generic blockchain access library and tooling
|
|
||||||
author = Louis Holbrook
|
|
||||||
author_email=dev@holbrook.no
|
author_email=dev@holbrook.no
|
||||||
|
description=Generic blockchain access library and tooling
|
||||||
|
version=0.0.10
|
||||||
url=https://gitlab.com/chaintools/chainlib
|
url=https://gitlab.com/chaintools/chainlib
|
||||||
|
author=Louis Holbrook
|
||||||
|
|
||||||
|
|
||||||
keywords =
|
keywords =
|
||||||
dlt
|
dlt
|
||||||
blockchain
|
blockchain
|
||||||
@ -18,14 +24,3 @@ classifiers =
|
|||||||
Intended Audience :: Developers
|
Intended Audience :: Developers
|
||||||
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
||||||
Topic :: Internet
|
Topic :: Internet
|
||||||
license = GPL3
|
|
||||||
licence_files =
|
|
||||||
LICENSE.txt
|
|
||||||
|
|
||||||
|
|
||||||
[options]
|
|
||||||
python_requires = >= 3.6
|
|
||||||
include_package_data = True
|
|
||||||
packages =
|
|
||||||
chainlib
|
|
||||||
chainlib.cli
|
|
||||||
|
9
setup.py
9
setup.py
@ -16,5 +16,12 @@ setup(
|
|||||||
install_requires=requirements,
|
install_requires=requirements,
|
||||||
extras_require={
|
extras_require={
|
||||||
'xdg': "pyxdg~=0.27",
|
'xdg': "pyxdg~=0.27",
|
||||||
}
|
},
|
||||||
|
license_files= ('LICENSE.txt',),
|
||||||
|
python_requires = '>=3.8',
|
||||||
|
include_package_data = True,
|
||||||
|
packages = [
|
||||||
|
'chainlib',
|
||||||
|
'chainlib.cli',
|
||||||
|
],
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user