File size: 2,049 Bytes
4265aea |
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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
[build-system]
requires = ["setuptools>=42.0", "setuptools-scm>=3.4"]
build-backend = "setuptools.build_meta"
[project]
name = "ez-tokenizer"
version = "1.0.0"
description = "High-performance tokenizer builder for code and text datasets with adaptive resource management"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT with Company Restriction"}
authors = [
{name = "NexForge", email = "jm.talbot@outlook.com"}
]
maintainers = [
{name = "NexForge", email = "jm.talbot@outlook.com"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Linguistic"
]
dependencies = [
"torch>=1.9.0",
"tokenizers>=0.12.0",
"tqdm>=4.62.0",
"psutil>=5.9.0",
"python-dateutil>=2.8.2"
]
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"pytest-cov>=2.12.1",
"pytest-xdist>=2.4.0",
"black>=21.7b0",
"isort>=5.0.0",
"mypy>=0.910",
"pylint>=2.11.0",
"pre-commit>=2.15.0"
]
[tool.setuptools]
include-package-data = true
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
namespaces = true
[tool.black]
line-length = 88
target-version = ['py38']
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
[tool.mypy]
ignore_missing_imports = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
warn_unreachable = true
show_error_context = true
|