-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 1.67 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (52 loc) · 1.67 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "contentstack-utils"
version = "1.6.1"
description = "Utility package for Contentstack headless CMS with an API-first approach."
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "contentstack" }]
requires-python = ">=3.6"
dependencies = [
# lxml 6.x requires Python 3.8+; keep 4.x for 3.6–3.7 (requires-python>=3.6).
"lxml>=4.9.0,<5; python_version<'3.8'",
"lxml>=6.1.0; python_version>='3.8'",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
keywords = ["contentstack", "cms", "headless", "utilities"]
urls = { Homepage = "https://github.com/contentstack/contentstack-utils-python" }
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"pytest-html>=4.2.0",
"ruff>=0.11.5",
"black>=24.3.0",
"flake8>=6.0.0",
"isort>=5.0.0",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["contentstack_utils*"]
[tool.setuptools.package-data]
contentstack_utils = ["assets/regions.json"]
[tool.pytest]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-ra"