From 694eacd3b94b6b885f5ad2819b69554a3a530bda Mon Sep 17 00:00:00 2001 From: = Date: Wed, 6 Nov 2024 13:31:26 +0100 Subject: [PATCH] Add setup.py so that the repo is installable with pip --- setup.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..54657e5 --- /dev/null +++ b/setup.py @@ -0,0 +1,10 @@ +from setuptools import setup + +setup(name='dune-sync', + version='0.1', + description='Components for syncing off-chain data with Dune Community Sources ', + url='https://github.com/cowprotocol/dune-sync', + author='cowprotocol', + author_email='info@cow.fi', + packages=['src'], + zip_safe=False)