-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 928 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (28 loc) · 928 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sfmc-client"
version = "0.1.0"
description = "A lightweight Python client for Salesforce Marketing Cloud (SFMC) with modular object managers for common API operations."
authors = [
{ name = "Bobby Curley", email = "bcurley.dev@gmail.com" }
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
readme = "README.md"
requires-python = ">=3.10.5"
dependencies = [
"aiohttp>=3.12.13,<4.0.0",
"pipdeptree>=2.27.0,<3.0.0",
"pytest-cov>=6.2.1,<7.0.0",
"python-dotenv>=1.0.1,<2.0.0",
"requests>=2.32.3,<3.0.0",
"setuptools>=58.1.0,<59.0.0"
]
[project.urls]
Homepage = "https://github.com/curleyr/sfmc-client-python"
Repository = "https://github.com/curleyr/sfmc-client-python"
Issues = "https://github.com/curleyr/sfmc-client-python/issues"
[tool.setuptools.packages.find]
where = ["sfmc_client"]