forked from jansegre/python-rocksdb
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (76 loc) · 2.11 KB
/
pyproject.toml
File metadata and controls
89 lines (76 loc) · 2.11 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
[project]
name = "rocksdb"
version = "0.10.1"
description = "Python bindings for RocksDB"
readme = "README.md"
authors = [
{ name = "Stephan Hofmockel" },
{ name = "Ming Hsuan Tu", email = "qrnnis2623891@gmail.com" },
{ name = "Martina Ferrari", email = "tina@tina.pm" },
{ name = "Jan Segre", email = "jan@hathor.network" },
]
maintainers = [
{ name = "Jan Segre", email = "jan@hathor.network" },
]
#url = "https://github.com/HathorNetwork/python-rocksdb"
requires-python = ">=3.11"
#license = "BSD-3-Clause"
license = {file = "LICENSE"}
keywords = ["rocksdb", "bindings"]
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Topic :: Database",
"License :: OSI Approved :: BSD License",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = []
[project.optional-dependencies]
doc = [
"sphinx",
"sphinx_rtd_theme",
]
test = [
"pytest",
]
[project.urls]
Repository = "https://github.com/HathorNetwork/python-rocksdb"
Issues = "https://github.com/HathorNetwork/python-rocksdb/issues"
[tool.setuptools.packages.find]
include = ["rocksdb*"]
where = ["."]
[tool.setuptools.package-data]
"rocksdb.cpp" = ["*.hpp"]
"rocksdb" = ["*.pxd", "*.pyx"]
[tool.setuptools_scm]
write_to = "docs/_build/version.txt"
[tool.sphinx]
source-dir = "docs"
build-dir = "docs/_build"
all-files = true
[tool.tox]
envlist = ["py310", "py311", "py312"]
min_version = "4.11"
isolated_build = true
no_package = true
[tool.tox.testenv]
deps = [".[test]"]
changedir = "/"
commands = ["pytest {envsitepackagesdir}/rocksdb"]
[tool.tox.testenv.docs]
deps = [".[doc]"]
commands = ["python setup.py build_sphinx -W"]
[tool.pytest.ini_options]
addopts = "--verbose --pyargs"
norecursedirs = [".tox"]
[build-system]
requires = ["setuptools>=61", "wheel>=0.45.0", "Cython>=3.0.0"]
build-backend = "setuptools.build_meta"