mirror of
https://github.com/autistic-symposium/web3-starter-py.git
synced 2025-05-17 06:02:12 -04:00
16 lines
No EOL
309 B
Python
16 lines
No EOL
309 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='yourapp',
|
|
version='0.0.1',
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
author='steinkirch',
|
|
install_requires=[
|
|
'Click',
|
|
],
|
|
entry_points='''
|
|
[console_scripts]
|
|
src=src.main:main
|
|
''',
|
|
) |