-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
58 lines (51 loc) · 1.69 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
[tool.poetry]
name = "singer-alto"
version = "0.2.21"
description = "A package for managing singer.io taps and targets"
authors = ["z3z1ma <[email protected]>"]
readme = "README.md"
packages = [{ include = "alto" }]
license = "MIT"
keywords = ["alto", "singer", "tap", "target", "etl", "data", "pipeline"]
homepage = "https://github.com/z3z1ma/alto"
repository = "https://github.com/z3z1ma/alto"
documentation = "https://z3z1ma.github.io/alto/"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
doit = ">=0.36.0"
pex = ">=2"
fsspec = "^2023.1.0"
dynaconf = "^3.1.11"
[tool.poetry.group.dev.dependencies]
ruff = "*"
black = "*"
isort = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
alto = "alto.main:main"
[tool.black] # https://black.readthedocs.io/en/stable/usage_and_configuration/the_basics.html#configuration-via-a-file
line-length = 100
target-version = ["py38", "py39", "py310", "py311"]
preview = true
[tool.isort] # https://pycqa.github.io/isort/docs/configuration/options.html
color_output = true
line_length = 100
profile = "black"
src_paths = ["alto"]
[tool.ruff] # https://beta.ruff.rs/docs/configuration/#using-pyprojecttoml
line-length = 100