web3-starter-py/boilerplates-tests/setup.py
mvonsteinkirch d24d37806d 💾
2022-12-24 14:51:10 -08:00

15 lines
No EOL
314 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='steinkirch',
install_requires=[
],
entry_points='''
[console_scripts]
testing_app_name=src.main:main
''',
)