whee

Unified interface to key value with locking and transactions.
Log | Files | Refs | README | LICENSE

setup.py (781B)


      1 from setuptools import setup
      2 
      3 f = open('./README.md', 'r')
      4 long_description = f.read()
      5 f.close()
      6 
      7 setup(
      8         name='wheepy',
      9         version='0.0.7a1',
     10         description='Unified interface to key value with locking and transactions.',
     11         author='Louis Holbrook',
     12         author_email='dev@holbrook.no',
     13         license='WTFPL',
     14         long_description=long_description,
     15         long_description_content_type='text/markdown',
     16         extras_require={
     17             'couchdb': ['couchdb~=1.2'],
     18             'valkey': ['valkey~=6.1.1'],
     19             'fs': ['xdg-base-dirs~=6.0.2'],
     20         },
     21         packages=[
     22             'whee',
     23             'whee.couchdb',
     24             'whee.valkey',
     25             'whee.fs',
     26         ],
     27         url='https://holbrook.no/src/whee/',
     28         )