setup.py (712B)
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.3', 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 }, 20 packages=[ 21 'whee', 22 'whee.couchdb', 23 'whee.valkey', 24 ], 25 url='https://holbrook.no/src/whee/', 26 )