Skip to content

Commit

Permalink
feat: added better support for .adoc .mdx and .rst files
Browse files Browse the repository at this point in the history
  • Loading branch information
shaneholloman committed Nov 26, 2024
1 parent 7362462 commit 12d7831
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,27 +22,27 @@ extend-exclude = '''

[project]
name = "codemapper"
version = "4.0.1"
version = "4.1.0"
description = "A tool to generate comprehensive Markdown artifacts of directory structures and file contents"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "Shane Holloman", email = "shaneholloman@gmail.com" }
{ name = "Shane Holloman", email = "shaneholloman@gmail.com" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
keywords = ["codemapper", "markdown", "directory", "file contents"]
dependencies = [
"chardet",
"pathspec"
"chardet",
"pathspec",
]
[project.urls]
"Homepage" = "https://github.com/shaneholloman/codemapper"
Expand Down
2 changes: 1 addition & 1 deletion src/codemapper/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
creating detailed Markdown documentation of their structure and contents.
"""

__version__ = "4.0.1"
__version__ = "4.1.0"

# Any other necessary imports or package-level code can go here

0 comments on commit 12d7831

Please sign in to comment.