-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
58 lines (52 loc) · 1.42 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
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.mypy]
files = "src/**/*.py"
ignore_errors = true
ignore_missing_imports = true
pretty = true
python_version = "3.9"
show_column_numbers = true
show_error_codes = true
show_error_context = true
[[tool.mypy.overrides]]
ignore_errors = false
module = "fab"
[tool.poetry]
authors = ["Harrison Totty <harrisongtotty@gmail.com>"]
description = "A python library for analyzing the Flesh and Blood TCG."
name = "fab"
readme = "README.md"
repository = "https://github.com/HarrisonTotty/fab"
version = "0.3.0"
[tool.poetry.dependencies]
bs4 = "*"
html5lib = "*"
IPython = "*"
kaleido = "0.2.1"
lxml = "*"
numpy = "*"
pandas = "*"
plotly = "*"
python = "^3.9"
python-dateutil = "*"
pyyaml = "*"
requests = "*"
unidecode = "*"
[tool.poetry.dev-dependencies]
jinja2 = "<3.1.0"
mkdocs = "*"
mkdocs-material = "*"
mkdocstrings = "*"
mkdocstrings-python = "*"
mypy = "*"
pytest = "*"
pytest-aio = "*"
pytest-cov = "*"
pytest-randomly = "*"
[tool.pytest.ini_options]
addopts = "-v --cov=fab"
python_files = "*.py"
python_functions = "test_*"
testpaths = "tests"