-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
64 lines (54 loc) · 1.41 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
[tool.poetry]
name = "minifold"
version = '0.10.0'
description = "Minifold is a Python module able to interact with various data sources (e.g. CSV, LDAP, SQL, twitter, etc.) and to query/combine/aggregate them with database-like operators."
authors = ["Marc-Olivier Buob <[email protected]>"]
license = "BSD-3 license"
readme = "README.md"
packages = [{include = "minifold", from = "src"}]
# https://docs.pytest.org/en/7.1.x/reference/customize.html
[tool.pytest.ini_options]
pythonpath = "src"
minversion = "7.2.1"
addopts = "--doctest-modules --showlocals --capture=no --exitfirst --failed-first"
testpaths = [
"tests"
]
[tool.poetry.dependencies]
beautifulsoup4 = "*"
python = ">=3.8"
pycountry = "*"
pymongo = "*"
ldap3 = "*"
lxml = "*"
requests = "*"
requests-cache = "*"
tweepy = "*"
urllib3 = "*"
xmltodict = "*"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = ">=7.2.1"
pytest-runner = "*"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pip = "*"
bump2version = "*"
flake8 = "*"
tox = "*"
coverage = "*"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
pydata-sphinx-theme = "*"
Sphinx = ">=6.0.0"
sphinx_mdinclude = "*"
[build-system]
requires = ["poetry-core", "dulwich", "poetry-plugin-export"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
omit = [
"src/minifold/scholar.py"
]