-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 1.54 KB
/
setup.py
File metadata and controls
36 lines (35 loc) · 1.54 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
from setuptools import setup, find_packages
import os
print(os.path.dirname(__file__))
setup(
name="codebase-to-text",
version="1.2",
packages=find_packages(),
install_requires=[
"python-docx>=0.8.11", # Specify minimum version for image support
"gitpython"
],
entry_points={
"console_scripts": [
"codebase-to-text = codebase_to_text.codebase_to_text:main",
]
},
author="Qaisar Tanvir",
author_email="qaisartanvir.dev+codebase_to_text@gmail.com",
description="A Python package to convert codebase to text",
license="MIT",
long_description=open("README.md", "r", encoding="utf-8").read(),
download_url="https://github.com/QaisarRajput/codebase_to_text/archive/refs/tags/1.2.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/QaisarRajput/codebase_to_text",
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",
],
)