-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
64 lines (51 loc) · 1.99 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
"""Magic Commit is a Python-based automation tool that revolutionizes the Git commit process. It intelligently analyzes code changes and generates concise commit messages, simplifying version control. Install Magic Commit from PyPI with:
pip install magiccommits
Navigate to your project directory and execute:
magiccommits or mc
Magic Commit scans your codebase, crafting meaningful commit messages by default. Experience streamlined version control effortlessly.
For in-depth usage instructions, run:
mc --help
Visit the Magic Commit repository for comprehensive documentation: https://github.com/prakash-O4/magiccommits
Developed by Prakash Basnet, Inspired from [https://github.com/Nutlope/aicommits]"""
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name='magiccommits',
version='1.0-dev',
author='Prakash Basnet',
url="https://github.com/prakash-O4/magiccommits",
license="MIT",
long_description_content_type="text/markdown",
description="Magiccommit: Effortless Git Commits with AI",
long_description=long_description,
keywords=["Git","Commits","Automation", "Code","Version","Control","ai commit","Commit messages"],
include_package_data=True,
packages=find_packages(exclude=["dist", "build", "*.egg-info"]),
py_modules= ['magiccommits'],
install_requires=[
'click',
'pyperclip',
'readchar',
],
entry_points={
'console_scripts': [
'magiccommits=magiccommits.main:cli',
'mc=magiccommits.main:cli'
],
},
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
],
)
print(
"""
--------------------------------
Magic Commit installation complete, Enjoy Coding!
--------------------------------
"""
)