mirror of
https://github.com/kirill-markin/repo-to-text.git
synced 2025-12-06 03:22:23 -08:00
autor
This commit is contained in:
parent
20ee44b24a
commit
535a5b7fdc
2 changed files with 17 additions and 1 deletions
|
|
@ -0,0 +1,3 @@
|
||||||
|
__author__ = 'Kirill Markin'
|
||||||
|
__email__ = 'markinkirill@gmail.com'
|
||||||
|
__version__ = '0.1'
|
||||||
15
setup.py
15
setup.py
|
|
@ -6,6 +6,13 @@ with open('requirements.txt') as f:
|
||||||
setup(
|
setup(
|
||||||
name='repo-to-text',
|
name='repo-to-text',
|
||||||
version='0.1',
|
version='0.1',
|
||||||
|
author='Kirill Markin',
|
||||||
|
author_email='markinkirill@gmail.com',
|
||||||
|
description='Convert a directory structure and its contents into a single text file, including the tree output and file contents in markdown code blocks.',
|
||||||
|
long_description=open('README.md').read(),
|
||||||
|
long_description_content_type='text/markdown',
|
||||||
|
url='https://github.com/kirill-markin/repo-to-text',
|
||||||
|
license='MIT',
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
install_requires=required,
|
install_requires=required,
|
||||||
entry_points={
|
entry_points={
|
||||||
|
|
@ -13,4 +20,10 @@ setup(
|
||||||
'repo-to-text=repo_to_text.main:main',
|
'repo-to-text=repo_to_text.main:main',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
)
|
classifiers=[
|
||||||
|
'Programming Language :: Python :: 3',
|
||||||
|
'License :: OSI Approved :: MIT License',
|
||||||
|
'Operating System :: OS Independent',
|
||||||
|
],
|
||||||
|
python_requires='>=3.6',
|
||||||
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue