-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
75 lines (65 loc) · 1.61 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
[build-system]
requires = ["flit_core >=3.6,<6"]
build-backend = "flit_core.buildapi"
[project]
name = "skyloader"
version = "0.1"
description = "Opinionated Python data ingest framework for loading Cloud drive files to a target database"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
keywords = ["etl", "postgresql", "google drive", "gdrive"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = ["numpy", "pandas", "requests"]
[project.optional-dependencies]
gdrive = [
"google-api-core",
"google-api-python-client",
"google-auth",
"googleapis-common-protos",
]
devel = ["pytest"]
[project.urls]
documentation = "https://github.com/sparkfish/skyloader/blob/dev/README.md"
repository = "https://github.com/sparkfish/skyloader.git"
[tool.mypy]
files = "skyloader/*.py"
exclude = "^tests"
mypy_path = "./stubs"
disallow_any_generics = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = false
implicit_reexport = true
strict_equality = true
[tool.black]
include = '\.pyi?$'
exclude = "venv"
[tool.ruff]
select = [
# pycodestyle error
"E",
# pyflakes
"F",
# isort
"I",
]
ignore = ["E501"]
[tool.ruff.isort]
known-first-party = ["skyloader"]
[tool.pytest.ini_options]
addopts = ""
testpaths = ["tests"]
markers = []
deploy = ["flit==3.9.0"]