-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (33 loc) · 1.11 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
[tool.poetry]
name = "PyStratum-MySQL"
version = "3.0.0"
description = "PyStratum MySQL: MySQL & MariaDB Backend"
authors = ["Set Based IT Consultancy <info@setbased.nl>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/DatabaseStratum/py-stratum-mysql"
documentation = "https://stratum.readthedocs.io/"
keywords = ["PyStratum", "MySQL", "MariaDB"]
classifiers = ["Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Code Generators",
"Topic :: System :: Installation/Setup",
]
[tool.poetry.dependencies]
python = "^3.12.0"
mysql-connector-python = "^9.0.0"
PyStratum-Backend = "^2.1.0"
PyStratum-Common = "^3.0.3"
PyStratum-Middle = "^1.2.0"
[tool.poetry.group.dev.dependencies]
coverage = "^7.5.1"
PyStratum-Cli = "^2.1.0"
Sphinx = "^7.3.7"
sphinx-rtd-theme = "^2.0.0"
[build-system]
requires = ["poetry-core"]
build-MySQL = "poetry.core.masonry.api"