From 29badd4926cb77f4c53de0ee3893260a81f8ce5f Mon Sep 17 00:00:00 2001 From: Richardson Lima Date: Mon, 23 Sep 2024 23:41:03 -0300 Subject: [PATCH] adding setup --- setup.py | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/setup.py b/setup.py index bd54c01..0bb275d 100644 --- a/setup.py +++ b/setup.py @@ -9,17 +9,15 @@ long_description=open('README.md').read(), url='https://github.com/richardsonlima/PyICL.git', packages=find_packages(), - install_requires=['pyicl','openai==1.46.0','nltk', 'stopwords'], + install_requires=['openai==1.46.0', 'nltk', 'stopwords'], license='BSD-3-Clause', + python_requires='>=3.8', classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', - 'License :: OSI Approved :: BSD-3-Clause', + 'License :: OSI Approved :: BSD License', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.8', - 'Programming Language :: Python :: 3.9', - 'Programming Language :: Python :: 3.10', - 'Programming Language :: Python :: 3.11', - 'Programming Language :: Python :: 3.12', + 'Topic :: Scientific/Engineering :: Artificial Intelligence', + 'Topic :: Software Development :: Libraries :: Python Modules', ], ) \ No newline at end of file