mirror of
https://github.com/autistic-symposium/web3-starter-py.git
synced 2025-07-24 07:20:37 -04:00
add my custom boilerplate (#50)
This commit is contained in:
parent
1cfd785c73
commit
79b56abc7c
14 changed files with 418 additions and 0 deletions
13
boilerplates/project_boilerplate/setup.py
Normal file
13
boilerplates/project_boilerplate/setup.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name="my_package",
|
||||
version='0.1',
|
||||
packages=find_packages(include=['src', \
|
||||
'src.utils']),
|
||||
author="bt3gl",
|
||||
install_requires=['python-dotenv'],
|
||||
entry_points={
|
||||
'console_scripts': ['my_package=src.main:run']
|
||||
},
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue