mirror of
https://github.com/autistic-symposium/blockchain-data-engineering-toolkit.git
synced 2025-05-02 23:04:58 -04:00
first commit
This commit is contained in:
commit
bb17a2a56e
29 changed files with 1238 additions and 0 deletions
16
token-scanner-api/setup.py
Normal file
16
token-scanner-api/setup.py
Normal 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']
|
||||
},
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue