36 lines
1.1 KiB
TOML
36 lines
1.1 KiB
TOML
[project]
|
|
name = "sqlcipher3-wheels"
|
|
version = "0.5.6"
|
|
description = "DB-API 2.0 interface for SQLCipher 3.x"
|
|
readme = { content-type = "text/markdown", file = "README.md" }
|
|
authors = [
|
|
{ name = "Charles Leifer", email = "coleifer@gmail.com" },
|
|
{ name = "laggykiller", email = "chaudominic2@gmail.com" }
|
|
]
|
|
license = { text = "zlib/libpng" }
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"Operating System :: MacOS :: MacOS X",
|
|
"Operating System :: Microsoft :: Windows",
|
|
"Operating System :: POSIX",
|
|
"Programming Language :: C",
|
|
"Programming Language :: Python",
|
|
"Topic :: Database :: Database Engines/Servers",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
]
|
|
|
|
[project.urls]
|
|
homepage = "https://github.com/laggykiller/sqlcipher3"
|
|
|
|
[build-system]
|
|
requires = [
|
|
"conan>=2.0",
|
|
"setuptools>=45",
|
|
"lipomerge>=0.1.1",
|
|
"urllib3<2.0" # urllib3>=2.0 not work for building python3.7 wheels (https://github.com/urllib3/urllib3/issues/2168)
|
|
]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
packages = ["sqlcipher3"]
|