File size: 1,335 Bytes
6f74dd4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
from setuptools import setup, find_packages
import codecs
import os
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
long_description = "\n" + fh.read()
setup(
name="repo2txt",
version="0.0.1",
author="Blaise",
author_email="[email protected]",
description="A tool to clone GitHub repositories, document their directory structure, and extract file contents into a text file.",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
packages=find_packages(),
install_requires=[
"click",
],
entry_points={
"console_scripts": [
"repo2txt=repo2txt.cli:cli",
],
},
url="https://github.com/blaise-tk/repo2txt",
keywords=[
"GitHub",
"repository",
"ai",
"clone",
"directory structure",
"file extraction",
"documentation",
"CLI tool",
],
classifiers=[
"Development Status :: Release",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: POSIX :: Linux",
],
)
|