forked from arthur-ai/bench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (57 loc) · 1.49 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
65
[build-system]
requires = ["setuptools>=64.0.0"] # support for editable installs via pyproject was added in v64
build-backend = "setuptools.build_meta"
[project]
name = "arthur_bench"
description = "validate models for production"
authors = [
{"name" = 'ArthurAI', "email" = "[email protected]"}
]
readme = "README.md"
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
] # fill this in if publishing to public pypi
dynamic = ["version"]
dependencies = [
'duckdb~=0.8.1',
'evaluate~=0.4.0',
'openai==0.27.0',
'pandas~=2.0.1',
'langchain~=0.0.170',
'sentencepiece==0.1.99',
'bert_score~=0.3.13',
'nltk~=3.8.1',
'tqdm~=4.65.0',
'pydantic>=1.10.0,<2.0',
'pyjwt<3,>=2.6',
'requests==2.28.2',
'requests_toolbelt~=1.0.0',
'textstat~=0.7.3',
'tiktoken~=0.4.0',
'transformers==4.29.2',
'wordfreq~=3.0.3'
]
[project.optional-dependencies]
server = [
'fastapi~=0.99.1',
'uvicorn~=0.22.0',
'amplitude-analytics==1.1.1'
]
docs = [
'sphinx',
'furo',
'myst_parser'
]
[project.scripts]
bench = "arthur_bench.server.run_server:run"
[metadata]
url = 'http://arthur.ai'
[tool.setuptools.packages.find]
exclude = ["docs*", "tests*", "examples*"]
[tool.setuptools.dynamic]
version = {attr = "arthur_bench.__version__"}