-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
90 lines (85 loc) · 2 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
88
89
90
[tool.poetry]
name = "FlaPy"
version = "0.2.0"
description = ""
authors = [
"Stephan Lukasczyk <[email protected]>",
"Martin Gruber <[email protected]>",
]
license = "LGPL-3.0+"
readme = "README.md"
repository = "https://github.com/se2p/flapy"
keywords = [
"unit test",
"flaky test",
]
classifiers = [
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Topic :: Education :: Testing",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Unit",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = ">=3.8,<4"
pipfile = "^0.0.2"
virtualenv = "^16.7"
deepdiff = "^4.0"
pytest = "^6.2.5"
pytest-cov = "^2.8.0"
pygithub = "^1.53"
fire = "^0.4.0"
pandas = "^1.1.4"
junitparser = "^1.6.3"
Jinja2 = "^3.0.3"
PyYAML = "^6.0"
tqdm = "^4.64.0"
bs4 = "^0.0.1"
numpy = "^1.20"
setuptools = "^75.1.0"
typing-extensions = "^4.12.2"
[tool.poetry.dev-dependencies]
flake8 = "^3.7"
mypy = "^0.761"
pylint = "^2.4"
codecov = "^2.0"
black = "=19.10b0"
ipython = "^8.0.1"
[tool.poetry.scripts]
flapy_run_tests = "flapy.run_tests:main"
results_parser = "flapy.results_parser:main"
pytest_trace = "flapy.pytest_trace:main"
fetch_all_pypi_projects = "flapy.mine_pypi_projects:fetch_all_pypi_projects_cli"
sample_pypi_projects = "flapy.mine_pypi_projects:sample_cli"
[tool.black]
line-length = 100
target_version = ['py37', 'py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.pytest_cache
| \.mypy_cache
| \.venv
| _build
| build
| dist
| flapy.egg-info
)/
| flapy/tempfile_seeded.py
| flapy/deephash_my.py
| flapy/pickle_tools.py
)
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"