forked from tungsten-ai/tungstenkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
108 lines (102 loc) · 2.87 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[tool.poetry]
name = "tungstenkit"
version = "0.2.19.post1"
description = "ML container made simple"
authors = ["Tungsten Contributors <foss@tungsten-ai.com>"]
homepage = "https://github.com/tungsten-ai/tungstenkit"
readme = ["README.md"]
packages = [{include = "tungstenkit"}]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: User Interfaces",
"Typing :: Typed",
"Environment :: Console",
"Environment :: Web Environment",
"Environment :: GPU",
"Framework :: FastAPI",
"Framework :: Pydantic",
"Framework :: Pydantic :: 1",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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"
]
[tool.poetry.scripts]
tungsten = "tungstenkit._internal.cli.main:main"
[tool.poetry.dependencies]
python = "^3.7"
attrs = ">=22"
cattrs = ">=22"
pyyaml = ">=5.3.1"
pathspec = "^0.10.2"
loguru = ">=0.6.0, <1.0.0"
requests = "=2.25.1"
beautifulsoup4 = "^4.11.1"
jinja2 = "^3.1.2"
pydantic = "^1.10.2"
typing-extensions = "^4.4.0"
pillow = ">=5.2.0"
fastapi = ">=0.88.0, <1.0.0"
uvicorn = ">=0.17.6, <1.0.0"
tabulate = "^0.9.0"
markdown = "^3.4.1"
filelock = "^3.9.0"
rich = "^13.3.1"
w3lib = "^2.1.1"
markdownify = "^0.11.6"
docker = "^6.0.1"
fasteners = "^0.18"
furl = "^2.1.3"
requests-toolbelt = "^0.10.1"
binaryornot = "^0.4.4"
python-multipart = "^0.0.6"
urllib3 = "^1.26"
dill = "^0.3.6"
pynvml = "^11.5.0"
platformdirs = "^3.8.1"
pytz = "^2023.3.post1"
jsonref = "^1.1.0"
[tool.poetry.group.dev.dependencies]
mypy = "^1.1"
black = "^22.3.0"
isort = "^4.3.21"
autoflake = "^1.3.1"
flake8 = "^3.7.9"
pytest = "^7.1.3"
pytest-cov = "^2.8.1"
types-pyyaml = ">=5.3.1"
types-requests = "^2.28.11.5"
types-setuptools = "^65.6.0.2"
twine = "^4.0.2"
locust = "^2.14.2"
types-tabulate = "^0.9.0.0"
types-markdown = "^3.4.2.5"
pytest-timeout = "^2.1.0"
jsonschema = "^4.17.3"
responses = "^0.23.1"
jupyter = "^1.0.0"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
line_length = 99
[tool.black]
line-length = 99
[build-system]
requires = ["poetry>=1.2"]
build-backend = "poetry.masonry.api"