-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
156 lines (141 loc) · 3.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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
# Poetry pyproject.toml: https://python-poetry.org/docs/pyproject/
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "dominodatalab-data"
version = "6.1.0"
description = "Domino Data API for interacting with Domino Data features"
readme = "README.md"
authors = [
"Gabriel Haim <[email protected]>",
"Aaron Read <[email protected]>",
]
license = "Apache Software License 2.0"
repository = "https://github.com/dominodatalab/domino-data"
homepage = "https://github.com/dominodatalab/domino-data"
# Generated client need to be bundled
packages = [
{ include = "domino_data" },
{ include = "datasource_api_client" },
{ include = "training_set_api_client" },
{ include = "feature_store_api_client" },
]
# Keywords description https://python-poetry.org/docs/pyproject/#keywords
keywords = [] #! Update me
# Pypi classifiers: https://pypi.org/classifiers/
classifiers = [ #! Update me
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[tool.poetry.dependencies]
python = "^3.9"
pandas = ">=1.3.0"
httpx = ">=0.24.0"
attrs = ">=20.1.0"
python-dateutil = "^2.8.0"
pyarrow = ">=15.0.2"
loguru = "^0.5.3"
backoff = ">=1.11.1"
bson = "^0.5.10"
urllib3 = ">=1.26.19,<3"
[tool.poetry.group.dev.dependencies]
Sphinx = "^5.3.0"
bandit = "^1.7.5"
black = {version = "^24.3.0", allow-prereleases = true}
darglint = "^1.8.1"
flake8 = "^4.0.1"
grpcio = "^1.56.2"
jinja2 = "^3.1.5"
isort = {extras = ["colors"], version = "^5.12.0"}
mypy = "^1.4.1"
mypy-extensions = "^1.0.0"
openapi-python-client = ">=0.11.6"
pdbpp = "^0.10.3"
pre-commit = "^2.21.0"
pydocstyle = "^6.3.0"
pyjwt = "^2.10.1"
pylint = "^2.17.4"
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
pytest-recording = "^0.12.2"
pyupgrade = "^2.38.4"
respx = "^0.20.1"
safety = ">=3"
sphinx-rtd-theme = "^1.2.2"
types-PyYAML = "^6.0.12.11"
types-python-dateutil = "^2.8.19.14"
vcrpy = "^5.0.0"
[tool.poetry.group.featurestore.dependencies]
feast = ">=0.45.0"
GitPython = "^3.1.41"
[tool.poetry.group.vectordbs.dependencies]
pinecone-client = ">=2.2.4,<5"
[tool.black]
# https://github.com/psf/black
target-version = ["py39"]
line-length = 100
color = true
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| env
| venv
)/
'''
[tool.isort]
# https://github.com/timothycrosley/isort/
py_version = 39
line_length = 100
known_typing = ["typing", "types", "typing_extensions", "mypy", "mypy_extensions"]
sections = ["FUTURE", "TYPING", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
extend_skip = ["services"]
include_trailing_comma = true
profile = "black"
multi_line_output = 3
indent = 4
color_output = true
[tool.mypy]
# mypy configurations: https://mypy.readthedocs.io/en/latest/config_file.html#using-a-pyproject-toml-file
exclude = 'datasource_api_client/|domino_data/training_sets/|.venv/|tests/|dist/'
python_version = 3.9
pretty = true
show_traceback = true
color_output = true
allow_redefinition = false
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
ignore_missing_imports = true
implicit_reexport = true
no_implicit_optional = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
strict_equality = true
strict_optional = true
warn_no_return = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
warn_unused_ignores = true
[tool.coverage.run]
omit = [
"domino_data/_feature_store/run_featurestore_sync.py"
]