-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
75 lines (62 loc) · 1.84 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["setuptools>=56.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "atlasq"
description="Query proxy that allows the usage of AtlasSearch with mongoengine specific syntax"
readme = "README.md"
license = {file = "LICENSE.txt"}
maintainers = [
{name = "Simone Berni", email = "[email protected]"}
]
keywords=["certego","atlas","mongoengine","python","search","textsearch","atlassearch"]
requires-python = ">=3.6"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = ["version", "dependencies"]
[project.urls]
homepage = "https://github.com/certego/atlasq"
repository = "https://github.com/certego/atlasq"
documentation = "https://github.com/certego/atlasq/README.md"
source = "https://github.com/certego/atlasq"
tracker = "https://github.com/certego/atlasq/issues"
[tool.setuptools]
py-modules = ["atlasq"]
packages = ["atlasq"]
[tool.setuptools_scm]
write_to = "./version.py"
local_scheme = "no-local-version"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.optional-dependencies]
test = [
"black==23.7.0",
"isort==5.10.1",
"pylint==2.17.4",
"flake8==4.0.1",
"pre-commit==3.3.2",
"tox==4.6.4",
"tox-gh-actions==3.1.1",
"codecov==2.1.12",
"coverage==7.2.7",
"mongomock==4.1.2",
]
[tool.black]
exclude = '''
/(
venv
)/
'''
[tool.isort]
profile = "black"
multi_line_output = 3
use_parentheses = true