forked from stvnksslr/dataslate-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 880 Bytes
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 880 Bytes
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
[tool.poetry]
name = "dataslate-parser"
version = "1.3.0"
description = "a module for parsing battlescribe rosters and allowing them to be printed or displayed cleanly"
authors = ["Steven Kessler <stvnksslr@gmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
requests = "2.23.0"
beautifulsoup4 = "4.9.1"
lxml = "4.5.1"
fastapi = "0.58.0"
aiofiles = "0.5.0"
jinja2 = "2.11.2"
python-multipart = "^0.0.5"
uvicorn = "0.11.5"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest-cov = "^2.8"
pytest-sugar = "^0.9.2"
pep8-naming = "^0.9.0"
flake8 = "^3.7"
flake8-pytest = "^1.3"
flake8-bandit = "^2.1.2"
flake8-functions = "^0.0.2"
flake8-variables-names = "^0.0.3"
flake8-bugbear = "^19.8.0"
flake8-eradicate = "^0.2.3"
pytest-asyncio = "^0.10.0"
flake8-comprehensions = "^3.1.4"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"