-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 1.19 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
# setup.py
from setuptools import setup, find_packages
setup(
name='research-utils',
version='0.2.2', # Increment the version number
description='A helper library for working with S3/Minio, Hugging Face models, and datasets',
long_description='This library provides utilities for downloading and managing machine learning models and datasets from S3-compatible storage services, and loading them using the Hugging Face libraries.',
author='Alan',
author_email='[email protected]',
url='https://github.com/janhq/research-utils',
packages=find_packages(),
install_requires=[
'boto3',
# tokenizers >=0.13.3
'tokenizers==0.13.3',
'transformers',
'datasets==2.20.0',
'torch', # Add the datasets library
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
python_requires='>=3.10',
keywords='s3 minio huggingface transformers datasets machine-learning',
)