-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
86 lines (78 loc) · 1.78 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
76
77
78
79
80
81
82
83
84
85
86
[tool]
[tool.poetry]
name = "xedocs"
version = "0.2.31"
homepage = "https://github.com/XENONnT/xedocs"
description = "Top-level package for xedocs."
authors = ["Yossi Mosbacher <joe.mosbacher@gmail.com>"]
readme = "README.rst"
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]
packages = [
{ include = "xedocs" },
{ include = "tests", format = "sdist" },
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
click = "*"
rich = "*"
rframe = "^0.2.21"
pymongo = {version = "*", optional = true}
appdirs = "^1.4.4"
tinydb = "^4.7.0"
tqdm = "^4.64.1"
xeauth = "^0.2.3"
pyyaml = "^6.0"
parse = "^1.19.1"
[tool.poetry.extras]
db = ["pymongo"]
all = ["db"]
[tool.poetry.dev-dependencies]
bumpversion = "*"
coverage = "*"
flake8 = "*"
isort = "*"
pylint = "*"
pytest = "*"
sphinx = "*"
tox = "*"
yapf = "*"
sphinx-material = "*"
nbsphinx = "*"
invoke = "*"
black = "*"
pytest-cov = "*"
hypothesis = "*"
autodoc-pydantic = "*"
jupyterlite-sphinx = "*"
sphinxext-rediraffe = "*"
pymongo = "*"
[tool.poetry.scripts]
xedocs = 'xedocs.cli:main'
[tool.poetry.plugins]
[tool.poetry.plugins."straxen"]
"xedocs_protocol" = "xedocs._straxen_plugin"
[build-system]
requires = ["poetry-core>=1.0.8", "setuptools"]
build-backend = "poetry.core.masonry.api"
[tool.dephell.main]
versioning = "semver"
from = {format = "poetry", path = "pyproject.toml"}
to = {format = "setuppy", path = "setup.py"}
[tool.poe.tasks]
test = "pytest --cov=xedocs"
format = "black ."
clean = """
rm -rf .coverage
.mypy_cache
.pytest_cache
dist
./**/__pycache__
"""
lint = "pylint xedocs"