forked from bruin-data/ingestr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
117 lines (103 loc) · 2.23 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[tool.pylint.master]
init-hook = 'import sys; sys.path.append(".")'
disable = [
"C0103",
"C0114",
"C0115",
"C0116",
"C0301",
"R0801",
"R0901",
"R0903",
"R0913",
"R1725",
"W0104",
"W0511",
"W0613",
"W0703",
"W1113",
]
max-attributes = 15
max-branches = 15
max-locals = 20
extension-pkg-whitelist = "pydantic"
jobs = 0
[tool.ruff.lint]
ignore = ["E501"]
extend-select = ["I"]
# Exclude a variety of commonly ignored directories.
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".hg",
".mypy_cache",
".nox",
".pants.d",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"__pycache__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
]
[tool.pytest.ini_options]
pythonpath = "."
testpaths = "ingestr"
ignore = ["venv"]
addopts = "-p no:warnings -rP"
[tool.coverage.run]
omit = ["*_test.py"]
[tool.mypy]
exclude = [
'venv',
'src/sql_database/.*',
'src/mongodb/.*',
'src/google_sheets/.*',
]
[[tool.mypy.overrides]]
module = [
"ingestr.src.sql_database.*",
"ingestr.src.mongodb.*",
"ingestr.src.google_sheets.*",
]
follow_imports = "skip"
[build-system]
requires = ["hatchling", "hatch-requirements-txt"]
build-backend = "hatchling.build"
[project]
name = "ingestr"
authors = [
{ name="Burak Karakan", email="[email protected]" },
]
description = "ingestr is a command-line application that ingests data from various sources and stores them in any database."
readme = "README.md"
requires-python = ">=3.9"
dynamic = ["dependencies", "version"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Database"
]
[project.urls]
Homepage = "https://github.com/bruin-data/ingestr"
Issues = "https://github.com/bruin-data/ingestr/issues"
[tool.hatch.version]
path = "ingestr/src/version.py"
[tool.hatch.build.targets.wheel]
packages = ["ingestr"]
[project.scripts]
ingestr = "ingestr.main:main"
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements.txt"]