forked from msiemens/tinydb
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
57 lines (48 loc) · 1.65 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[tool.poetry]
name = "tinydb"
version = "4.4.0"
description = "TinyDB is a tiny, document oriented database optimized for your happiness :)"
authors = ["Markus Siemens <[email protected]>"]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/msiemens/tinydb"
documentation = "https://tinydb.readthedocs.org/"
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",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
"Typing :: Typed",
]
packages = [
{ include = "tinydb" }
]
[tool.poetry.urls]
"Changelog" = "https://github.com/msiemens/tinydb/en/latest/changelog.html"
"Issues" = "https://github.com/msiemens/tinydb/issues"
[tool.poetry.dependencies]
python = "^3.5"
[tool.poetry.dev-dependencies]
pytest = "^5.2.2"
pytest-codestyle = "^1.4.0"
pytest-cov = "^2.8.1"
pycodestyle = "^2.5.0"
sphinx = "^2.2.1"
coveralls = "^1.8.2"
pyyaml = "^5.1.2"
pytest-mypy = { version = "^0.4.1", markers = "platform_python_implementation != 'PyPy'" }
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"