web3-starter-py/boilerplates-tests/setup.py
2022-03-23 18:32:49 +04:00

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