-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
44 lines (37 loc) · 1.07 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
[tool.poetry]
name = "tinydb-smartcache"
version = "2.0.0"
description = "A smarter query cache for TinyDB"
authors = ["Markus Siemens <markus@m-siemens.de>"]
license = "MIT"
readme = "README.rst"
keywords = ["database", "nosql"]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Topic :: Database",
"Topic :: Database :: Database Engines/Servers",
"Topic :: Utilities",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent"
]
packages = [
{ include = "tinydb_smartcache" }
]
[tool.poetry.dependencies]
python = "^3.5"
tinydb = "^4.0"
[tool.poetry.dev-dependencies]
pytest = "^5.4.2"
coverage = "^5.1"
coveralls = "^2.0.0"
pytest-cov = "^2.9.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"