forked from julianprester/sncloud
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 778 Bytes
/
pyproject.toml
File metadata and controls
28 lines (25 loc) · 778 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
[project]
name = "sncloud"
version = "0.2.1"
description = "Unofficial Python API client that allows you to access your Supernote files through the Supernote Cloud"
readme = "README.md"
authors = [
{ name = "Julian Prester", email = "hi@julianprester.com" }
]
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
dependencies = [
"click>=8.1.8",
"httpx>=0.28.1",
"pydantic>=2.10.5",
]
[project.scripts]
sncloud = "sncloud.cli:cli"
[project.urls]
Homepage = "https://github.com/julianprester/sncloud"
Changelog = "https://github.com/julianprester/sncloud/releases"
Issues = "https://github.com/julianprester/sncloud/issues"
CI = "https://github.com/julianprester/sncloud/actions"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"