forked from coleifer/sqlcipher3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
33 lines (30 loc) · 990 Bytes
/
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
[project]
name = "sqlcipher3-wheels"
version = "0.5.2.post1"
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" }]
license = { text = "zlib/libpng" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: zlib/libpng License",
"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",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["sqlcipher3"]