-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
109 lines (96 loc) · 2.72 KB
/
Copy pathpyproject.toml
File metadata and controls
109 lines (96 loc) · 2.72 KB
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
[project]
name = "sqlalchemy-ibmi"
version = "0.9.5-dev"
description = "SQLAlchemy support for Db2 on IBM i"
readme = "README.md"
license = "Apache-2.0"
keywords = ["sqlalchemy", "database", "ibm", "ibmi", "db2"]
dynamic = ["classifiers"]
authors = [
{name = "Korinne Adler", email = "kadler@us.ibm.com"},
{name = "Naveen Ram", email = "naveen.ram@ibm.com"}
]
requires-python = ">=3.10"
dependencies = [
"sqlalchemy (>=1.4.0,<3.0)",
"pyodbc (>=5.0); python_version>='3.13'",
"pyodbc (>=4.0); python_version<'3.13'",
]
[dependency-groups]
test = [
"pytest >=7.2.1; python_version>='3.11'",
"pytest >=6.2.5; python_version~='3.10'",
]
lint = [
"flake8",
"black ~=22.8.0",
]
dev = [
{ include-group = "test" },
{ include-group = "lint" },
"bump-my-version",
]
docs = [
"sphinx >1.0.0",
"sphinx-rtd-theme >0.4.0",
]
[project.urls]
Homepage = "https://github.com/IBM/sqlalchemy-ibmi"
Repository = "https://github.com/IBM/sqlalchemy-ibmi"
Documentation = "https://sqlalchemy-ibmi.readthedocs.io"
[project.entry-points."sqlalchemy.dialects"]
ibmi = "sqlalchemy_ibmi.base:IBMiDb2Dialect"
"ibmi.pyodbc" = "sqlalchemy_ibmi.base:IBMiDb2Dialect"
[build-system]
requires = ["poetry-core (>=2.0.0,<3.0.0)"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
classifiers =[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Database :: Front-Ends",
]
packages = [
{include = "sqlalchemy_ibmi"}
]
include = [
{ path = "test/*", format = "sdist" },
{ path = "contributing/*", format = "sdist" },
{ path = "docs/*", format = "sdist" },
{ path = "setup.cfg", format = "sdist" },
{ path = "CHANGES", format = "sdist" },
{ path = "LICENSE", format = "sdist" },
]
requires-poetry = ">=2.0.0,<3.0.0"
[tool.black]
line-length = 88
required-version = 22
[tool.bumpversion]
current_version = "0.9.5-dev"
commit = true
tag = true
tag_name = "{new_version}"
message = "Bump version: {current_version} → {new_version}"
tag_message = "Bump version: {current_version} → {new_version}"
allow_dirty = false
serialize = [
"{major}.{minor}.{patch}-{release}",
"{major}.{minor}.{patch}",
]
parse = """(?x)
(?P<major>0|[1-9]\\d*)\\.
(?P<minor>0|[1-9]\\d*)\\.
(?P<patch>0|[1-9]\\d*)
(?:
- # dash separator for pre-release section
(?P<release>[a-zA-Z-]+) # pre-release label
)? # pre-release section is optional
"""
[tool.bumpversion.parts.release]
values = ["dev", "rc", "final"]
optional_value = "final"
[[tool.bumpversion.files]]
filename = "sqlalchemy_ibmi/__init__.py"
[[tool.bumpversion.files]]
filename = "pyproject.toml"