-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
96 lines (92 loc) · 2.09 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "nypl_py_utils"
version = "1.6.2"
authors = [
{ name="Aaron Friedman", email="[email protected]" },
]
description = "A package containing Python utilities for use across NYPL"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = []
[project.urls]
"Homepage" = "https://github.com/NYPL/python-utils"
"Bug Tracker" = "https://github.com/NYPL/python-utils/issues"
[project.optional-dependencies]
avro-client = [
"avro>=1.11.1",
"requests>=2.28.1"
]
cloudlibrary-client = [
"requests>=2.28.1"
]
kinesis-client = [
"boto3>=1.26.5",
"botocore>=1.29.5"
]
kms-client = [
"boto3>=1.26.5",
"botocore>=1.29.5"
]
mysql-client = [
"mysql-connector-python>=8.0.32"
]
oauth2-api-client = [
"oauthlib>=3.2.2",
"requests_oauthlib>=1.3.1"
]
postgresql-client = [
"psycopg[binary]>=3.1.6"
]
redshift-client = [
"botocore>=1.29.5",
"redshift-connector>=2.0.909"
]
s3-client = [
"boto3>=1.26.5",
"botocore>=1.29.5"
]
secrets-manager-client = [
"boto3>=1.26.5",
"botocore>=1.29.5"
]
sftp-client = [
"paramiko>=3.4.1"
]
config-helper = [
"nypl_py_utils[kms-client]",
"PyYAML>=6.0"
]
obfuscation-helper = [
"bcrypt>=4.0.1"
]
patron-data-helper = [
"nypl_py_utils[postgresql-client,redshift-client]>=1.1.5",
"pandas>=2.2.2"
]
research-catalog-identifier-helper = [
"requests>=2.28.1"
]
development = [
"nypl_py_utils[avro-client,kinesis-client,kms-client,mysql-client,oauth2-api-client,postgresql-client,redshift-client,s3-client,secrets-manager-client,sftp-client,config-helper,obfuscation-helper,patron-data-helper,research-catalog-identifier-helper]",
"flake8>=6.0.0",
"freezegun>=1.2.2",
"mock>=4.0.3",
"pytest>=7.2.0",
"pytest-mock>=3.10.0",
"requests-mock>=1.10.0"
]
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "-ra -q"
pythonpath = "src"
testpaths = [
"tests"
]