mirror of
https://github.com/autistic-symposium/web3-starter-py.git
synced 2025-05-17 14:10:21 -04:00
15 lines
No EOL
322 B
Python
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
|
|
''',
|
|
) |