-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (38 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
41 lines (38 loc) · 1.18 KB
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
36
37
38
39
40
41
[project]
name = "bigc"
version = "1.0.0"
description = "Unofficial client for the BigCommerce API"
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Adam Walsh", email = "adam@medshift.com" },
{ name = "Dillon Hartley", email = "dillon@medshift.com" },
{ name = "Milo Weinberg", email = "milo@medshift.com" },
{ name = "Ryan Thomson", email = "ryan@medshift.com" }
]
keywords = ["bigcommerce", "api", "client"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"requests~=2.32"
]
[project.urls]
homepage = "https://github.com/MedShift/bigc"
repository = "https://github.com/MedShift/bigc.git"
[dependency-groups]
dev = [
"pytest~=7.1",
]
[build-system]
requires = ["uv_build>=0.9.5,<0.10.0"]
build-backend = "uv_build"