-
Notifications
You must be signed in to change notification settings - Fork 29
/
pyproject.toml
61 lines (52 loc) · 1.18 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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "datadm"
description = "DataDM is your private data assistant. Slide into your data's DMs"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["nlp", "ai", "data", "chatbot", "database", "csv", "analytics", "datachat", "datadm"]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"gradio",
"guidance==0.0.64",
"jupyter",
"matplotlib",
"pandas",
"sketch",
"transformers",
"scikit-learn",
"safetensors==0.3.2",
"seaborn",
"lxml",
"scipy",
"xgboost",
]
urls = {homepage = "https://github.com/approximatelabs/datadm"}
dynamic = ["version"]
[project.optional-dependencies]
cuda = ["accelerate"]
all = ["datadm[cuda]"]
[project.scripts]
datadm = "datadm.app:main"
[tool.setuptools]
packages = ["datadm"]
[tool.setuptools_scm]
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py38, py39, py310, py311
[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
[testenv]
deps= -rdev-requirements.txt
commands = python -m pytest tests -s
"""