web3-starter-py/boilerplates/tests/setup.py
2024-03-14 20:38:16 +01:00

15 lines
No EOL
313 B
Python

from setuptools import setup, find_packages
setup(
name='testing_app_name',
version='0.0.1',
packages=find_packages(),
include_package_data=True,
author='Mia Stein',
install_requires=[
],
entry_points='''
[console_scripts]
testing_app_name=src.main:main
''',
)