-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
87 lines (78 loc) · 1.82 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
87
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "FindMyAccounts"
readme = "README.md"
authors = [
{name = "Timo Kühne"},
]
version = "1.5.2"
description = "Simple tool to find out where you have accounts."
requires-python = ">=3.6.1"
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.6",
]
dependencies = [
"imap-tools>=0.5",
"requests>=2.24",
"email_validator >=1.1.1",
"pandas >=1.0.3",
"validators",
]
[project.urls]
Documentation = "https://github.com/H3nkl3r/FindMyAccounts/wiki"
Source = "https://github.com/h3nkl3r/FindMyAccounts"
[project.optional-dependencies]
test = [
"pytest >=6.2.4",
"pytest-cov >=2.12.0",
"tox >=3.14.0",
]
[project.scripts]
FindMyAccounts = "FindMyAccounts.cli:main"
[tool.pytest.ini_options]
addopts = "--cov=FindMyAccounts --cov-report=xml"
testpaths = [
"tests",
]
[tool.tox]
legacy_tox_ini = """
[tox]
minversion = 3.8.0
envlist = py39, py38, py37, py36, py310
isolated_build = true
[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39
3.10: py310
[testenv]
setenv =
PYTHONPATH = {toxinidir}
passenv =
TEST_EMAIL_USERNAME
TEST_EMAIL_PASSWORD
TEST_EMAIL_IMAP_SERVER
deps =
imap-tools>=0.5
requests>=2.20
email_validator >=1.1.1
pytest >=6.2.4
pytest-cov >=2.12.0
pandas >=1.0.3
validators
commands =
pytest --basetemp={envtmpdir}
"""