-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (58 loc) · 1.83 KB
/
pyproject.toml
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "datastew"
version = "0.1.0"
description = "Datastew is a python library for intelligent data harmonization using Large Language Model (LLM) vector embeddings."
authors = ["Tim Adams <[email protected]>", "Mehmet Can Ay <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/SCAI-BIO/datastew"
repository = "https://github.com/SCAI-BIO/datastew"
documentation = "https://github.com/SCAI-BIO/datastew#readme"
keywords = ["data-harmonization", "LLM", "embeddings", "data-steward"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.urls]
homepage = "https://github.com/SCAI-BIO/datastew"
repository = "https://github.com/SCAI-BIO/datastew"
documentation = "https://github.com/SCAI-BIO/datastew#readme"
tracker = "https://github.com/SCAI-BIO/datastew/issues"
[[tool.poetry.packages]]
include = "datastew"
[tool.poetry.dependencies]
python = ">=3.9,<4"
matplotlib = "^3.8.1"
numpy = "^1.25.2"
openai = "^0.28.0"
openpyxl = "*"
pandas = "^2.1.0"
plotly = "^5.17.0"
python-dateutil = "^2.8.2"
python-dotenv = "^1.0.0"
pytz = "^2023.3"
seaborn = "^0.13.0"
sentence-transformers = "^2.3.1"
scikit-learn = "^1.3.2"
six = "^1.16.0"
thefuzz = "^0.20.0"
tzdata = "^2023.3"
wheel = "^0.37.1"
aiofiles = "^0.7.0"
SQLAlchemy = "^2.0.27"
scipy = "^1.11.4"
pydantic = "^2.5.0"
requests = "^2.31.0"
uuid = "^1.30"
weaviate-client = "^4.6.5"
[tool.poetry.dev-dependencies]
flake8 = "^6.0.0"
pytest = "^7.4.0"