pyproject.toml
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "python-fsutil"
description = "high-level file-system operations for lazy devs."
authors = [
{ name = "Fabio Caccamo", email = "fabio.caccamo@gmail.com" },
]
keywords = [
"python",
"file",
"system",
"util",
"utils",
"utility",
"utilities",
"dir",
"directory",
"path",
"fs",
"os",
"shutil",
"glob",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: MacOS X",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Desktop Environment :: File Managers",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Filesystems",
"Topic :: Utilities",
]
dynamic = ["version"]
maintainers = [
{ name = "Fabio Caccamo", email = "fabio.caccamo@gmail.com" },
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.license]
file = "LICENSE.txt"
content-type = "text/plain"
[project.urls]
Homepage = "https://github.com/fabiocaccamo/python-fsutil"
Download = "https://github.com/fabiocaccamo/python-fsutil/releases"
Documentation = "https://github.com/fabiocaccamo/python-fsutil#readme"
Issues = "https://github.com/fabiocaccamo/python-fsutil/issues"
Funding = "https://github.com/sponsors/fabiocaccamo/"
Twitter = "https://twitter.com/fabiocaccamo"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| venv
)/
'''
[tool.mypy]
files = ["fsutil"]
disable_error_code = "import-untyped"
ignore_missing_imports = true
install_types = true
non_interactive = true
strict = true
[tool.ruff]
line-length = 88
[tool.ruff.lint]
ignore = []
select = ["B", "B9", "C", "E", "F", "W"]
[tool.ruff.lint.mccabe]
max-complexity = 10
[tool.setuptools.packages.find]
include = ["fsutil*"]
[tool.setuptools.dynamic.version]
attr = "fsutil.metadata.__version__"