Spaces:
Sleeping
Sleeping
File size: 522 Bytes
86c402d |
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 |
[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 @ git+ssh://[email protected]/textai/parsers/parser.git@master"
]
[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_*" |