chainsyncer

Blockchain syncer driver
Info | Log | Files | Refs | LICENSE

setup.cfg (915B)


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