web3-starter-py/web2_projects/magic-pen/setup.py
osiris account 69bb4175f1 💾
2023-03-12 15:29:57 -07:00

13 lines
No EOL
260 B
Python

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