-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (32 loc) · 935 Bytes
/
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
[project]
name = "pretalx-salesforce"
dynamic = ["version"]
description = "Send speaker and proposal information to SalesForce"
readme = "README.rst"
license = {text = "Apache Software License"}
keywords = ["pretalx"]
authors = [
{name = "Tobias Kunze", email = "r@rixx.de"},
]
maintainers = [
{name = "Tobias Kunze", email = "r@rixx.de"},
]
dependencies = [
"simple_salesforce",
]
[project.urls]
homepage = "https://github.com/pretalx/pretalx-salesforce"
repository = "https://github.com/pretalx/pretalx-salesforce.git"
[project.entry-points."pretalx.plugin"]
pretalx_salesforce = "pretalx_salesforce:PretalxPluginMeta"
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "pretalx_salesforce.__version__"}
[tool.setuptools.packages.find]
include = ["pretalx*"]
[tool.check-manifest]
ignore = [".*"]