-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 953 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (28 loc) · 953 Bytes
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
[build-system]
requires = ["setuptools", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "SQLMigrately"
version = "0.1.2"
description = "Zero setup SQL schema migration from pandas DataFrames"
readme = "README.md"
authors = [{ name = "blacksuan19", email = "py@aolabs.dev" }]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
dependencies = ["pandas", "sqlalchemy", "loguru"]
[project.optional-dependencies]
dev = ["black", "bumpver", "pip-tools", "wheel"]
[tool.bumpver]
current_version = "0.1.2"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']
"sqlmigrately/__init__.py" = ['__version__ = "{version}"']
"README.md" = ["PyPi-{version}"]