web3-starter-py/small-projects/enconding-decimals/setup.py
mvonsteinkirch d24d37806d 💾
2022-12-24 14:51:10 -08:00

15 lines
No EOL
290 B
Python

from setuptools import setup, find_packages
setup(
name='efun',
version='0.0.1',
packages=find_packages(),
include_package_data=True,
author='steinkirch',
install_requires=[
],
entry_points='''
[console_scripts]
efun=src.main:main
''',
)