-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
30 lines (29 loc) · 929 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
26
27
28
29
30
from setuptools import setup
setup(
name="llmner",
version="0.1.0",
description="# LLMNER: Named Entity Recognition without training data",
url="https://github.com/plncmm/llmner",
author="PLN@CMM",
author_email="[email protected]",
license="BSD 2-clause",
packages=["llmner"],
install_requires=[
"openai==0.28.1",
"langchain==0.0.321",
"nltk==3.8.1",
"tqdm==4.66.1",
"setuptools>=24.2.0",
],
python_requires=">=3.10",
extras_require={"dev": ["ipykernel==6.25.2"]},
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)