mirror of
https://github.com/autistic-symposium/blockchain-data-engineering-toolkit.git
synced 2025-04-26 10:49:23 -04:00
16 lines
368 B
Python
16 lines
368 B
Python
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']
|
|
},
|
|
) |