-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
25 lines (20 loc) · 1003 Bytes
/
pyproject.toml
File metadata and controls
25 lines (20 loc) · 1003 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
[tool.poetry]
name = "localstore"
version = "0.2.1"
description = "LocalStore is a Python library that provides various operations on a local database of products, which can be used to store and manage information about items in a local store inventory and it also give mobility to create an local API for the database. Besides this it can convert CSV file to json."
authors = ["colddsam <dassamratkumar772@gmail.com>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/colddsam/LocalStore.git"
keywords=["Data Conversion","Dataset Creation","CSV File Processing","JSON Serialization","Directory Traversal","File Reading","Data Cleaning","Hashing","Data Structure Manipulation","Exception Handling","File Writing"]
[tool.poetry.dependencies]
python = "^3.10"
uvicorn = "^0.26.0"
pydantic = "^2.5.3"
fastapi = "^0.109.0"
pandas = "^2.2.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"