-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (33 loc) · 1.14 KB
/
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
27
28
29
30
31
32
33
34
from setuptools import setup, find_packages
setup(
name='gptdiff',
version='0.1.31',
description='A tool to generate and apply git diffs using LLMs',
author='255labs',
packages=find_packages(), # Use find_packages() to automatically discover packages
package_data={'gptdiff': []}, # Add any package data if needed
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=[
'openai>=1.0.0',
'tiktoken>=0.5.0',
'ai-agent-toolbox>=0.1.15'
],
extras_require={
'test': ['pytest', 'pytest-mock'],
'docs': ['mkdocs', 'mkdocs-material']
},
entry_points={
'console_scripts': [
'gptdiff=gptdiff.gptdiff:main',
'gptpatch=gptdiff.gptpatch:main',
],
},
license=None, # Remove license argument
# license_file='LICENSE.txt', # Remove license_file argument
classifiers=[ # Add license classifiers
'License :: OSI Approved :: MIT License', # Standard MIT license classifier
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
)