-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
26 lines (25 loc) · 990 Bytes
/
setup.py
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="auto-codebase-documenter",
version="1.2",
packages=find_packages(),
install_requires=["openai", "python-dotenv", "PyYAML"],
entry_points={
"console_scripts": [
"auto-codebase-documenter = auto_codebase_documenter.auto_documenter:main",
],
},
author="Alex Bryant",
author_email="[email protected]",
description="Automatic codebase documentation tool using OpenAI GPT models",
long_description="This tool utilizes OpenAI GPT models to automatically assess and document a codebase by generating written assessments for each file.",
long_description_content_type="text/markdown",
url="https://github.com/abryant710/auto-codebase-documenter",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
license="MIT",
platforms=["any"],
)