-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
46 lines (44 loc) · 1.21 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
43
44
45
46
from setuptools import find_packages, setup
with open('README.md') as f:
long_description = f.read()
setup(
name="wise-topic",
version="0.0.1",
description="LLM-only topic extraction and classification",
long_description=long_description,
long_description_content_type='text/markdown',
author="Wise",
url='https://github.com/transferwise/wise-topic',
classifiers=[
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'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',
],
install_requires=[
"langchain",
"langchain_core",
"langchain_openai",
"numpy",
"scikit_learn"
],
extras_require={
"test": [
"flake8",
"pytest",
"pytest-cov"
],
},
packages=find_packages(
include=[
'wise_topic',
'wise_topic.*'
],
exclude=['tests*'],
),
include_package_data=True,
keywords='wise-topic',
)