use fork of relstorage

This commit is contained in:
dave 2019-06-11 21:10:10 -07:00
parent 9b30755430
commit 62f04809ab
2 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@ portend==2.4
pycparser==2.19 pycparser==2.19
PyMySQL==0.9.3 PyMySQL==0.9.3
pytz==2019.1 pytz==2019.1
RelStorage==2.1.1 -e git+https://git.davepedu.com/dave/relstorage.git@5ae138b71a0eeb740208e61cfd1662c49738ee45#egg=RelStorage
requests==2.22.0 requests==2.22.0
six==1.12.0 six==1.12.0
tempora==1.14.1 tempora==1.14.1

View File

@ -5,8 +5,8 @@ import os
__version__ = "0.0.1" __version__ = "0.0.1"
with open(os.path.join(os.path.dirname(__file__), "requirements.txt")) as f: # with open(os.path.join(os.path.dirname(__file__), "requirements.txt")) as f:
__requirements__ = [line.strip() for line in f.readlines()] # __requirements__ = [line.strip() for line in f.readlines()]
setup(name='wastebin', setup(name='wastebin',
@ -16,7 +16,7 @@ setup(name='wastebin',
author='dpedu', author='dpedu',
author_email='dave@davepedu.com', author_email='dave@davepedu.com',
packages=['wastebin'], packages=['wastebin'],
install_requires=__requirements__, # install_requires=__requirements__,
entry_points={ entry_points={
"console_scripts": [ "console_scripts": [
"wastebind = wastebin.daemon:main", "wastebind = wastebin.daemon:main",