-
Notifications
You must be signed in to change notification settings - Fork 87
/
pyproject.toml
67 lines (60 loc) · 1.88 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
66
67
[tool.poetry]
name = "pinferencia"
version = "0.2.1"
description = "Aims to be the Simplest Machine Learning Model Inference Server"
authors = ["Jiuhe Wang <[email protected]>"]
license = "Apache-2.0 License"
readme = "Readme.md"
homepage = "https://pinferencia.underneathall.app"
repository = "https://github.com/underneathall/pinferencia"
keywords = ["Machine Learning", "Inference", "Serve"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: GPU",
"Environment :: Web Environment",
"Framework :: FastAPI",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"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",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed"
]
[tool.poetry.dependencies]
python = "^3.7.1"
fastapi = "^0.75.1"
requests = "^2.27.1"
numpy = [
{version = "1.19.5", python = ">=3.6, <3.7"},
{version = "^1.20.3", python = ">=3.7, <3.8"},
{version = "^1.22.3", python = "^3.8"}
]
click = "^8.0.4"
uvicorn = "^0.16.0"
streamlit = {version = "^1.10.0", optional = true}
[tool.poetry.dev-dependencies]
pytest = "^7.0.1"
pytest-cov = "^3.0.0"
dill = "^0.3.4"
joblib = "^1.1.0"
flake8 = "^4.0.1"
strictyaml = "^1.6.1"
[tool.poetry.extras]
streamlit = [
"streamlit",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
[tool.poetry.scripts]
pinfer = "pinferencia.main:main"