forked from FareedKhan-dev/basiclingua-LLM-Based-NLP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 1.27 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
from setuptools import setup, find_packages
import os
here = os.path.abspath(os.path.dirname(__file__))
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
VERSION = '1.0.0'
DESCRIPTION = 'A Python library based on Google Gemini LLM to perform basic and advanced natural language processing (NLP) tasks'
LONG_DESCRIPTION = 'Basiclingua is a Gemini LLM based Python library that provides functionalities for linguistic tasks such as tokenization, stemming, lemmatization, and many others.'
# Setting up
setup(
name="basiclingua",
version=VERSION,
author="Fareed Hassan Khan, Syed Asad Rizvi",
author_email="<[email protected]>, <[email protected]>",
description=DESCRIPTION,
long_description=read('README.md'),
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=["google-generativeai", "grpcio", "grpcio-tools"], # Add any dependencies here
keywords=['python', 'NLP', 'Natural Language Processing', 'Linguistics', 'Gemini LLM', 'Google Gemini LLM'],
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Microsoft :: Windows",
"License :: OSI Approved :: MIT License",
]
)