web3-starter-py/Test_Boilerplate/setup.py
2020-02-11 10:35:33 -08: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
''',
)