muryshev's picture
update
be03119
raw
history blame contribute delete
480 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",
"nltk>=3.8"
]
[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_*"