-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
126 lines (115 loc) · 2.55 KB
/
pyproject.toml
File metadata and controls
126 lines (115 loc) · 2.55 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
[build-system]
requires = [
"setuptools>=64",
"setuptools-scm>=8",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["eyepop*"]
exclude = ["tmp*", "tests*", "examples*", "scripts*", "compute-examples*"]
[project]
name = "eyepop"
dynamic = ["version"]
description="EyePop.ai Python SDK"
readme = "README.md"
license = "MIT"
authors = [
{ name = "EyePop.ai", email = "support@eyepop.ai" },
]
requires-python = ">= 3.12"
keywords=["EyePop", "AI", "ML", "CV"]
dependencies = [
"aiohttp>=3.9.0,<4.0.0",
"cryptography>=42.0.0,<47.0.0",
"deprecated>=1.2.0,<2.0.0",
"flatbuffers>=24.0.0,<26.0.0",
"matplotlib>=3.8.0,<4.0.0",
"pandas>=2.0.0,<3.0.0",
"pyarrow>=17.0.0,<22.0.0",
"pydantic>=2.0.0,<3.0.0",
"pydantic-settings>=2.0.0,<3.0.0",
"websockets>=13.0.0,<16.0.0",
"typing_extensions~=4.15.0"
]
[project.urls]
Homepage = "https://github.com/eyepop-ai/eyepop-sdk-python"
Repository = "https://github.com/eyepop-ai/eyepop-sdk-python"
[project.optional-dependencies]
test = [
"aioresponses>=0.7.8",
"pytest",
"pytest-asyncio",
"pytest-cov",
"pytest-timeout",
"codecov",
"pre-commit",
"parameterized>=0.9.0"
]
doc = [
"mkdocs",
"mkdocstrings",
"mkdocstrings[python]",
"mkdocs-material",
"Pygments",
]
example = [
"pyqt5",
"webui2",
"pybars3",
"python-dotenv",
"aiofiles==25.1.0",
"auth0-python>=4.13.0"
]
dev = [
"build>=1.0.0,<2.0.0",
"mypy>=1.8.0,<2.0.0",
"ruff>=0.6.0,<1.0.0",
"types-aiofiles",
"types-Pillow",
]
all = ["eyepop[test,doc,example,dev]"]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
"--ignore=tests/integration",
]
testpaths = [
"tests",
]
markers = [
"integration: marks tests as integration tests (require API keys)",
]
asyncio_mode = "auto"
[tool.coverage.run]
source = ["eyepop"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
eyepop = ["py.typed"]
[tool.setuptools_scm]
version_file = "eyepop/_version.py"
local_scheme = "no-local-version"
[tool.mypy]
python_version = "3.12"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
check_untyped_defs = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
warn_unreachable = true
strict_optional = true
show_error_codes = true
show_error_context = true
pretty = true
[[tool.mypy.overrides]]
module = [
"matplotlib.*",
"PIL.*",
"webui.*",
"pybars.*",
"flatbuffers.*",
]
ignore_missing_imports = true