-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
109 lines (100 loc) · 3.33 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
109
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pymlup"
description = "MLup framework, fast ml to production, easy to learn, easy to use."
requires-python = ">=3.7"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{ name="Deys Timofey", email="[email protected]" },
]
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: AsyncIO",
"Framework :: FastAPI",
"Framework :: Pydantic",
"Framework :: Pydantic :: 1",
"License :: OSI Approved :: MIT License",
"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",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Internet :: WWW/HTTP",
]
dependencies = [
"fastapi[all]>=0.95.2,<0.100.0",
"pyyaml>=6.0.0,<7.0.0",
"numpy>=1.0.0,<2.0.0",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/nxexox/pymlup"
Documentation = "https://github.com/nxexox/pymlup/docs"
Repository = "https://github.com/nxexox/pymlup"
[project.optional-dependencies]
scikit-learn = [
"scikit-learn>=1.2.0,<1.3.0;python_version>='3.8'",
"scikit-learn;python_version<'3.8'",
]
lightgbm = ["lightgbm>=4.0.0,<5.0.0"]
tensorflow = ["tensorflow>=2.0.0,<3.0.0"]
torch = [
"torch>=2.0.0,<3.0.0;python_version>='3.8'",
"torch;python_version<'3.8'",
]
onnx = [
"onnx>=1.0.0,<2.0.0",
"onnxruntime<1.16",
]
tests = [
# Tests
"pytest>=7.0.0,<8.0.0",
"pytest-asyncio==0.21.0",
# Tests models
"joblib>=1.2.0,<1.3.0",
"pandas>=2.0.0,<3.0.0;python_version>='3.8'",
"pandas;python_version<'3.8'",
"scikit-learn>=1.2.0,<1.3.0;python_version>='3.8'",
"scikit-learn;python_version<'3.8'",
"tensorflow==2.13.1;python_version>='3.8'",
"tensorflow;python_version<'3.8'",
"lightgbm>=4.0.0,<5.0.0",
"torch>=2.0.0,<3.0.0;python_version>='3.8'",
"torch;python_version<'3.8'",
"onnx>=1.0.0,<2.0.0",
"onnxruntime<1.16",
"tf2onnx>=1.0.0,<2.0.0",
"skl2onnx>=1.0.0,<2.0.0",
# Tests jupyter
"nbclient==0.10.0;python_version>='3.8'",
"nbclient==0.7.4;python_version<'3.8'",
"jupyterlab-pygments==0.3.0;python_version>='3.8'",
"jupyterlab-pygments==0.2.2;python_version<'3.8'",
]
[tool.setuptools.dynamic]
version = {attr = "mlup.__version__"}
[project.scripts]
mlup = "mlup.console_scripts.command:main"
[tool.setuptools.packages.find]
# All the following settings are optional:
include = ["mlup*"] # ["*"] by default
exclude = ["test*", "*__pycache__*",] # empty by default