-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
25 lines (24 loc) · 825 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
from setuptools import setup, find_packages
setup(
name='skript',
version='0.1',
packages=find_packages(),
description='A Python package that translates natural language to bash commands using LLaMA 3.',
author='Sankeerth Rao Karingula',
author_email='[email protected]',
url='https://github.com/sankeerthrao/skript', # Optional
install_requires=[
'mlx_lm>=0.1', # Replace '0.1' with the minimum version you need
# Add other dependencies as needed
],
entry_points={
'console_scripts': [
'skript=skript.cli:main', # Ensures that `skript` command starts your CLI
],
},
include_package_data=True,
package_data={
# Include any other necessary files like model weights or additional data
},
zip_safe=False
)