forked from major/lexgrabber
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (26 loc) · 707 Bytes
/
pyproject.toml
File metadata and controls
31 lines (26 loc) · 707 Bytes
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
[tool.poetry]
name = "lexgrabber"
version = "0.1.0"
description = ""
authors = ["Major Hayden <major@mhtx.net>"]
readme = "README.md"
packages = [{include = "lexgrabber", from = "src"}]
[tool.poetry.dependencies]
python = ">=3.11.0,<3.12"
pandas = "^2.1.2"
pyarrow = "^14.0.1"
requests = "^2.31.0"
[tool.poetry.group.dev.dependencies]
mypy = "^1.6.1"
ipython = "^8.17.2"
pytest-sugar = "^0.9.7"
pytest = "^7.4.3"
pytest-xdist = "^3.3.1"
pytest-cov = "^4.1.0"
pandas-stubs = "^2.0.0.230412"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
update_models = 'lexgrabber.models:update_models'
update_vehicles = 'lexgrabber.vehicles:update_vehicles'