Initial Commit - Basic app

This commit is contained in:
Charlie Crossley
2025-08-19 14:28:10 +01:00
commit f9f7558d74
11 changed files with 486 additions and 0 deletions

26
setup.py Normal file
View File

@@ -0,0 +1,26 @@
from setuptools import setup, find_packages
setup(
name='mdq', # The name of your package
version='0.1', # Package version
packages=find_packages(), # Find all packages
install_requires=[], # Add dependencies here if needed
entry_points={
'console_scripts': [
'mdq = mdq.mdq:main', # Command 'mdq' runs the 'main' function in searchmd.py
],
},
# Other metadata (optional)
description="Markdown Query: Search and highlight content in markdown files.",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Charlie Crossley',
author_email='charlie.crossley@iceelectronics.net',
url='https://example.com', # Replace with your repo URL
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)