first draft

This commit is contained in:
Kirill Markin 2024-06-08 09:44:34 +02:00
parent 996938f535
commit 752ca966c4
8 changed files with 1582 additions and 1 deletions

13
setup.py Normal file
View file

@ -0,0 +1,13 @@
from setuptools import setup, find_packages
setup(
name='repo-to-text',
version='0.1',
packages=find_packages(),
install_requires=[],
entry_points={
'console_scripts': [
'repo-to-text=repo_to_text.main:main',
],
},
)