-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
44 lines (41 loc) · 1.58 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[project]
name = "cf_rules"
description = "Wrapper library to import / export multiple remote rules and easily create, modify and delete rules."
readme = "README.md"
keywords = ["api", "rules", "wrapper", "library", "firewall", "waf", "cloudflare", "bulk"]
license = {file = "LICENSE"}
authors = [{name = "Quentin Lienhardt", email = "[email protected]" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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 :: Only",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.8"
dependencies = [
"requests>=2.31",
"sphinx>=7.2",
"sphinx-rtd-theme>=2.0",
"sphinx-copybutton>=0.5",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/QuentiumYT/Cloudflare-Firewall-Rules"
"Documentation" = "https://quentiumyt.github.io/Cloudflare-Firewall-Rules/"
"Source Code" = "https://github.com/QuentiumYT/Cloudflare-Firewall-Rules"
"Bug Reports" = "https://github.com/QuentiumYT/Cloudflare-Firewall-Rules/issues"
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "cf_rules.__version__"}