usawa

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

setup.py (518B)


      1 import os
      2 
      3 from setuptools import setup
      4 
      5 script_dir = os.path.realpath(os.path.dirname(__file__))
      6 aux_dir = os.path.join(script_dir, 'aux')
      7 varints_dir = os.path.join(aux_dir, 'varints', 'varints')
      8 
      9 
     10 setup(
     11         install_requires=[
     12             "filemagic~=1.6",
     13             "wheepy[valkey]~=0.0.3",
     14             "confini~=0.6.5",
     15             "lxml~=6.0.2",
     16             "PyNaCl~=1.6.0",
     17             "rencode~=1.0.8",
     18             "hexathon~=0.1.7",
     19             "varints@file://" + varints_dir,
     20             ],
     21         )