-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (37 loc) · 1.15 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
"""
Pip Setup for Tuna
"""
# pylint: disable=all
from setuptools import setup, find_packages
setup(
name='tuna-cli',
version='0.1.2',
author='Abhigyan Arya (Opennote Labs)',
author_email='support@opennote.me',
description='Fine tuning, reimagined. Welcome to tuna - we\'re simplifying cloud compute architecture, datasets, and more, to get your specialized AI from 0 to 1 ASAP.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/abhi-arya1/tuna',
project_urls={
'Homepage': 'https://github.com/abhi-arya1/tuna',
'Issues': 'https://github.com/abhi-arya1/tuna/issues',
},
packages=find_packages(include=['tuna', 'tuna.*']),
python_requires='>=3.12',
install_requires=[
'inquirer',
'requests',
'halo',
'jupyterlab',
'nbformat',
'scikit-learn',
'tabulate',
'paramiko',
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
include_package_data=True,
)