-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
35 lines (32 loc) · 862 Bytes
/
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
[tool.poetry]
name = "shmessy"
version = "1.0.0"
description = "If your data is messy - Use Shmessy!"
readme = "README.md"
authors = ["Ohad Mata <[email protected]>"]
homepage = "https://github.com/ohadmata/shmessy"
repository = "https://github.com/ohadmata/shmessy"
packages = [
{ include = "shmessy", from = "src" },
]
[tool.poetry.dependencies]
python = ">= 3.9, < 4.0"
pandas = ">= 2.0"
tabulate = ">= 0.9"
pydantic = {extras=["email"], version = "^1.10"}
[tool.poetry.dev-dependencies]
pre-commit = "^2.20.0"
pytest = "^7.1.2"
pytest-cov = "^4.0.0"
pytest-mock = "^3.10.0"
pylint = "^2.14.5"
mypy = "^0.991"
pylint-junit = "^0.3.2"
pytest-parametrization = "^2022.2"
coverage-badge = "^1.1.0"
hypothesis = "^6.96.3"
python-calamine = "^0.2.0"
xlrd = "^2.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"