-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
78 lines (74 loc) · 1.8 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import codecs
import os
from setuptools import setup, find_packages
from commify.version import __version__
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, 'README.md'), encoding='utf-8') as fh:
long_description = '\n' + fh.read()
long_description = long_description.replace("[!NOTE]", "")
long_description = long_description.replace("[!Caution]", "")
long_description = long_description.replace("[!Warning]", "")
setup(
name='Commify',
version=__version__,
description='Commify: You Should Commit Yourself.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Matuco19',
license="MATCO-Open-Source",
url="https://matuco19.com/Commify",
project_urls={
'Source Code': 'https://github.com/Matuco19/Commify',
'Bug Tracker': 'https://github.com/Matuco19/Commify/issues',
},
packages=find_packages(),
install_requires=[
'ollama',
'GitPython',
'g4f',
'rich',
'requests',
'openai',
'groq'
],
entry_points={
'console_scripts': [
'commify=commify.main:main',
],
},
keywords=[
'commify',
'python',
'ai',
'commit',
'commits',
'git',
'github',
'gpt',
'language-model',
'automation',
'commits',
'gpt-4',
'gpt4',
'gpt-4o',
'gpt4o',
'gpt4-o',
'gpt-4omni',
'o1',
'o3-mini',
'deepseek-r1',
'groq',
'cli',
'cli-app',
'ollama',
'ollama-api',
'llama3',
'llama3.1',
'llama3.2',
'llama3.3',
'matuco19',
'openai',
'python3',
'gitpython',
],
)