-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 757 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 757 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
35
[tool.poetry]
name = "sqloxide"
version = "0.1.37"
repository = "https://github.com/wseaton/sqloxide"
license = "MIT"
description = "Python bindings for sqlparser-rs"
authors = ["Will Eaton <me@wseaton.com>"]
build = "build.py"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Rust",
"Topic :: Database",
"License :: OSI Approved :: MIT License",
]
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
[tool.poetry.dev-dependencies]
setuptools-rust = "^1.1.2"
pytest = "^7.4.2"
black = "*"
isort = "^5.8.0"
ipython = "^7"
bump2version = "^1.0.1"
[build-system]
requires = [
"poetry-core>=1.0.0",
"setuptools>=41.0.0",
"wheel",
"setuptools_rust>=0.10.2",
]
build-backend = "poetry.core.masonry.api"