-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 944 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 944 Bytes
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
from setuptools import setup, find_packages
setup(
name="RepoScribe",
version="0.1.5",
author="Ruben Selander",
author_email="info@nordicintel.com",
description="A lightweight tool to compile project files and directories into a structured Markdown document",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/reversehobo/RepoScribe",
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Documentation",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
python_requires=">=3.8", # Change as appropriate
entry_points={
"console_scripts": [
"reposcribe=reposcribe.cli:main", # Assuming 'cli.py' contains the CLI interface
],
},
)