forked from QaisarRajput/codebase_to_text
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (40 loc) · 1.83 KB
/
setup.py
File metadata and controls
42 lines (40 loc) · 1.83 KB
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
# Modified from Qaisar Tanvir's original codebase-convert setup.py to include Pillow for image support in python-docx and updated version numbers for dependencies.
from setuptools import setup, find_packages
import os
setup(
name="codebase_convert",
version="2.0.0",
packages=find_packages(),
install_requires=[
"python-docx>=0.8.11", # Specify minimum version for image support
"gitpython",
"pathspec>=0.11.0",
"tiktoken>=0.5.0",
"Pillow",
"flask",
"flasgger"
],
entry_points={
"console_scripts": [
"cb = codebase_convert.codebase_convert:main",
]
},
author="Misterscan",
author_email="misterscanmusic@aol.com",
description="A Python package to convert codebase to text",
license="Apache-2.0",
long_description=open(os.path.join(os.path.dirname(os.path.abspath(__file__)), "docs/README.md"), "r", encoding="utf-8").read(),
download_url="https://github.com/Misterscan/codebase_convert/releases/download/v2.0.0/codebase_convert-2.0.0.tar.gz",
long_description_content_type="text/markdown",
keywords = ["codebase, code conversion, text conversion, folder structure, file contents, text extraction, document conversion, Python package, GitHub repository, command-line tool, code analysis, file parsing, code documentation, formatting preservation, readability"],
url="https://github.com/Misterscan/codebase_convert",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
],
)