Add dir with some small projects

This commit is contained in:
bt3gl 2022-03-23 18:41:46 +04:00
parent 0da3cbd74a
commit 0bdc950e7f
55 changed files with 12 additions and 1212 deletions

View file

@ -0,0 +1,15 @@
from setuptools import setup, find_packages
setup(
name='efun',
version='0.0.1',
packages=find_packages(),
include_package_data=True,
author='Mia von Steinkirch',
install_requires=[
],
entry_points='''
[console_scripts]
efun=src.main:main
''',
)