24 lines
470 B
TOML
24 lines
470 B
TOML
[project]
|
|
name = "psdonline"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Deeman", email = "hendriknote@gmail.com" }
|
|
]
|
|
requires-python = ">=3.13"
|
|
|
|
dependencies = [
|
|
"niquests>=3.14.1",
|
|
"pendulum>=3.1.0",
|
|
]
|
|
[project.scripts]
|
|
extract_psd = "psdonline.execute:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/psdonline"]
|