usawa

Signed, immutable accounting.
Log | Files | Refs | Submodules | LICENSE

setup.cfg (1302B)


      1 [metadata]
      2 name = usawa
      3 version = 0.3.2
      4 description = Signed, immutable accounting.
      5 author = Louis Holbrook
      6 author_email = dev@holbrook.no
      7 url = https://git.defalsify.org/usawa
      8 keywords =
      9 	accounting
     10 	cryptography
     11 classifiers =
     12 	Environment :: No Input/Output (Daemon)
     13 	Programming Language :: Python :: 3
     14 	Operating System :: OS Independent
     15 	Development Status :: 3 - Alpha
     16 	Intended Audience :: Developers
     17 	License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
     18 #	Topic :: Blockchain :: EVM
     19 license = GPL3
     20 licence_files =
     21 	LICENSE
     22 
     23 [options]
     24 include_package_data = True
     25 python_requires = >= 3.7
     26 packages = 
     27 	usawa
     28 	usawa.resolve
     29 	usawa.runnable
     30 	usawa.index
     31 	usawa.gui
     32 	usawa.gui.core
     33 	usawa.gui.components
     34 	usawa.gui.controllers
     35 	usawa.gui.models
     36 	usawa.gui.views
     37 	usawa.cli
     38 	usawa.storage
     39 
     40 [options.entry_points]
     41 console_scripts =
     42 	usawad = usawa.runnable.server:main
     43 	usawa-gui = usawa.runnable.gui:main
     44 	usawa-create = usawa.runnable.create:main
     45 	usawa-add = usawa.runnable.add:main
     46 	usawa-entry = usawa.runnable.entry:main
     47 	usawa-wallet = usawa.runnable.wallet:main
     48 	usawa-view = usawa.runnable.view:main
     49 	usawa-import = usawa.runnable.import:main
     50 	usawa-export = usawa.runnable.export:main
     51 	usawa-revert = usawa.runnable.revert:main
     52 	usawa-asset = usawa.runnable.asset:main