forked from aaronsegura/nextcloud-async
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
28 lines (26 loc) · 908 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "nextcloud_async"
version = "0.0.6"
authors = [
{ name="Aaron Segura" },
]
description = "Asynchronous client library for Nextcloud"
readme = "README.md"
license = { text="License :: OSI Approved :: GNU General Public License v3 (GPLv3)" }
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Flake8",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3.10"
]
keywords = ["nextcloud", "asynchronous", "spreed"]
dependencies = ["httpx", "xmltodict", "platformdirs", "PyNaCl"]
[project.urls]
"Homepage" = "https://github.com/aaronsegura/nextcloud-async"
"Bug Tracker" = "https://github.com/aaronsegura/nextcloud-async/issues"