-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 769 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 769 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
27
from setuptools import setup, find_packages
setup(
name="CodeSumma",
version="0.1.0",
description="CodeSumma is an AI-powered code summarization tool that streamlines"
"the development process by generating concise, token-limited,"
"summaries of Python codebases.",
author="Ryan Mac",
license="MIT",
packages=find_packages(),
install_requires=[
"flake8",
"gitpython",
"openai",
"pyperclip",
"pytest",
"python-dotenv",
"tiktoken",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11.2",
],
)