-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
62 lines (54 loc) · 1.78 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
[project]
name = "beam-postgres"
version = "0.5.0"
description = "Light IO transforms for Postgres read/write in Apache Beam pipelines."
readme = "README.md"
authors = [{ name = "Adam Medziński" }]
license = { text = "Apache-2.0" }
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["apache beam", "beam", "postgres", "postgresql"]
dependencies = [
"apache-beam>=2.42.0,<3",
"psycopg[binary]>=3.1.4,<4",
]
requires-python = ">=3.8"
[project.optional-dependencies]
dev = ["bumpver", "pip-tools", "tox"]
tests = ["black", "flake8", "isort", "mypy", "pytest>=7"]
[project.urls]
Homepage = "https://github.com/medzin/beam-postgres"
[build-system]
requires = ["setuptools>=65.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["beam_postgres", "beam_postgres.io"]
[tool.bumpver]
current_version = "0.5.0"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'^version = "{version}"$',
'^current_version = "{version}"$',
]
"beam_postgres/__init__.py" = ['__version__ = "{version}"']
[tool.isort]
profile = "black"
src_paths = ["beam_postgres", "test"]
[tool.mypy]
ignore_missing_imports = true