-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
46 lines (41 loc) · 1.18 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
[tool.poetry]
name = "santoku"
version = "221018.38"
description = "Custom Python wrapper around many third party APIs, including AWS, BigQuery, Slack and Salesforce."
authors = ["Data Science Team at WIRIS <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/wiris/santoku"
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Pytest",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3.9",
]
[tool.poetry.dependencies]
python = "~3.9"
boto3 = "^1.24.91"
jsonschema = "^4.1.0"
pandas = "^1.2.4"
slackclient = "^2.5.0"
tldextract = "^3.1.0"
mysql-connector-python = "^8.0.5"
requests = "^2.27.1"
pandas-gbq = "^0.17.1"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
mypy = "^0.942"
black = "^22.3.0"
isort = "^5.8.0"
moto = "^3.1.4"
responses = "0.16.0"
[tool.pytest.ini_options]
addopts = "--exitfirst --capture=no"
log_auto_indent = "true"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"