-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
48 lines (43 loc) · 997 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
41
42
43
44
45
46
47
48
[project]
name = "calitp-cs"
description = "Administrative tasks for Cal-ITP's Customer Success team"
version = "1.0.0"
readme = "README.md"
license = { file = "LICENSE" }
classifiers = ["Programming Language :: Python :: 3 :: Only"]
requires-python = ">=3.11"
dependencies = []
[project.urls]
code = "https://github.com/cal-itp/customer-success"
tracker = "https://github.com/cal-itp/customer-success/issues"
[project.optional-dependencies]
dev = [
"black",
"build",
"flake8",
"ipykernel",
"pre-commit"
]
hubspot = [
"hubspot-api-client==11.0.0",
"pandas==2.2.3",
"requests==2.32.3"
]
notes = [
"beautifulsoup4==4.12.3",
"slack_sdk==3.33.5"
]
qr_codes = [
"pypng==0.20220715.0",
"qrcode[pil]==8.0",
"typing_extensions==4.12.2"
]
[build-system]
requires = ["setuptools>=65"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 127
target-version = ['py311']
include = '\.pyi?$'
[tool.setuptools]
packages = ["data", "notes"]