muryshev's picture
update
fd485d9
raw
history blame
463 Bytes
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61"]
[project]
name = "ntr_text_fragmentation"
version = "0.1.0"
dependencies = [
"uuid==1.30",
"ntr_fileparser==0.2.0"
]
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0"
]
[tool.setuptools.packages.find]
where = ["."]
[tool.pytest]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"