first commit

This commit is contained in:
osiris account 2023-03-11 17:12:27 -08:00
commit bb17a2a56e
29 changed files with 1238 additions and 0 deletions

View file

@ -0,0 +1,16 @@
from setuptools import setup, find_packages
setup(
name="indexer",
version='0.0.2',
packages=find_packages(include=[
'src',
'src.blockchains',
'src.server',
'src.utils']),
author="steinkirch.eth",
install_requires=['python-dotenv'],
entry_points={
'console_scripts': ['indexer=src.main:run']
},
)