-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 1018 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 1018 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "wc_client"
description = "A small client for WooCommerce."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Miguel Figueira Ferraz", email = "miguelfigueiraferraz@gmail.com" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = ["httpx>=0.25.0"]
dynamic = ["version"]
[project.urls]
Documentation = "https://github.com/miguelfferraz/python-wc-client/tree/main#readme"
Source = "https://github.com/miguelfferraz/python-wc-client"
Tracker = "https://github.com/miguelfferraz/python-wc-client/issues"
[tool.hatch.version]
path = "wc_client/__init__.py"