Skip to content
This repository has been archived by the owner on Dec 20, 2024. It is now read-only.

Add setup.py so that the repo is installable with pip #127

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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='[email protected]',
packages=['src'],
zip_safe=False)
Loading