-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
61 lines (54 loc) · 1.55 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
[tool.poetry]
name = "daffy"
version = "0.7.0"
description = "Function decorators for Pandas Dataframe column name and data type validation"
authors = ["Janne Sinivirta <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/fourkind/daffy"
repository = "https://github.com/fourkind/daffy.git"
keywords = ["pandas", "dataframe", "typing", "validation"]
classifiers = [
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License"
]
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0.0"
pandas = ">=1.5.1,<3.0.0"
[tool.poetry.dev-dependencies]
pytest = "^7.4.3"
isort = "^5.12.0"
black = "^23.11.0"
flake8 = "^6.1.0"
pre-commit = "^3.5.0"
mypy = "^1.7.1"
pytest-mock = "^3.12.0"
pytest-cov = "^4.1.0"
coverage = {extras = ["toml"], version = "^7.3.2"}
pydocstyle = "^6.3.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.coverage.run]
branch = true
source = ["daffy"]
[tool.coverage.report]
show_missing = true
fail_under = 95
[tool.black]
line-length = 120