mirror of
https://github.com/autistic-symposium/web3-starter-py.git
synced 2025-05-17 14:10:21 -04:00
13 lines
No EOL
320 B
Python
13 lines
No EOL
320 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="my_package",
|
|
version='0.1',
|
|
packages=find_packages(include=['src', \
|
|
'src.utils']),
|
|
author="mia stein",
|
|
install_requires=['python-dotenv'],
|
|
entry_points={
|
|
'console_scripts': ['my_package=src.main:run']
|
|
},
|
|
) |