27 lines
934 B
Python
27 lines
934 B
Python
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",
|
|
],
|
|
)
|
|
|