chainqueue

Blockchain transaction queue control
Info | Log | Files | Refs | LICENSE

setup.cfg (1005B)


      1 [metadata]
      2 name = chainqueue
      3 version = 0.2.4
      4 description = Generic blockchain transaction queue control
      5 author = Louis Holbrook
      6 author_email = dev@holbrook.no
      7 url = https://git.defalslfy.org/chainqueue,git
      8 keywords =
      9 	dlt
     10 	cryptocurrency
     11 	ethereum
     12 classifiers =
     13 	Programming Language :: Python :: 3
     14 	Operating System :: OS Independent
     15 	Development Status :: 3 - Alpha
     16 	Environment :: Console
     17 	Intended Audience :: Developers
     18 	License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
     19 	Topic :: Internet
     20 #	Topic :: Blockchain :: EVM
     21 license = OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
     22 licence_files =
     23 	LICENSE
     24 
     25 [options]
     26 python_requires = >= 3.7
     27 include_package_data = True
     28 packages = 
     29 	chainqueue
     30 	chainqueue.cache
     31 	chainqueue.unittest
     32 	chainqueue.store
     33 	chainqueue.runnable
     34 	chainqueue.cli
     35 	chainqueue.data
     36 
     37 [options.entry_points]
     38 console_scripts =
     39 	chainqueue-list = chainqueue.runnable.list:main
     40 	chainqueue-state = chainqueue.runnable.state:main