-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (28 loc) · 793 Bytes
/
pyproject.toml
File metadata and controls
35 lines (28 loc) · 793 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
32
33
34
35
[tool.poetry]
name = "screenapi-cli"
version = "0.1.6"
description = "A cli interface to interact with screenapi"
authors = ["RONY <iamrony777@pm.me>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "app" },
]
[project.urls]
homepage = "https://ffstudios.io"
repository = "https://github.com/FutureForge-Studios/screenapi-cli.git"
[tool.poetry.scripts]
screenapi-cli = "app.__main__:app"
sapi = "app.__main__:app"
[tool.poetry.dependencies]
python = "^3.10"
pandas = "^2.2.1"
httpx = {extras = ["http2"], version = "^0.27.0"}
typer = {extras = ["all"], version = "^0.10.0"}
openpyxl = "^3.1.2"
python-calamine = "^0.2.0"
[tool.poetry.group.dev.dependencies]
python-dotenv = "^1.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"