/
LeonBlue
/
Python_DataStructs_And_Algorithms
Обзор
Документация
Войти
/
LeonBlue
/
Python_DataStructs_And_Algorithms
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
pyproject.toml
69 строк
2 KB
qwerty29544
Update .gitignore and README.md for project structure and documentation improvements
30 ноя 2025, 01:27
30 ноя 2025, 01:27
f68deb3
Код
Авторство
О чём код?
[build-system] requires = ["setuptools>=61.0", "wheel"] build-backend = "setuptools.build_meta" [project] name = "python-datastructs-algorithms" version = "0.1.0" description = "A collection of data structures and algorithms implemented in Python" readme = "README.md" requires-python = ">=3.8" license = {text = "MIT"} authors = [ {name = "Your Name", email = "your.email@example.com"}, ] classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Education", "Intended Audience :: Developers", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Education", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ] [project.optional-dependencies] dev = [ "pytest>=7.4.0", "pytest-cov>=4.1.0", "black>=23.7.0", "flake8>=6.1.0", "mypy>=1.5.0", "pylint>=2.17.0", ] [tool.black] line-length = 88 target-version = ['py38', 'py39', 'py310', 'py311'] include = '\.pyi?$' [tool.pytest.ini_options] testpaths = ["tests"] python_files = ["test_*.py"] python_classes = ["Test*"] python_functions = ["test_*"] addopts = "-v --cov=data_structures --cov=algorithms --cov-report=html --cov-report=term" [tool.mypy] python_version = "3.8" warn_return_any = true warn_unused_configs = true disallow_untyped_defs = false ignore_missing_imports = true [tool.flake8] max-line-length = 88 extend-ignore = ["E203", "E266", "E501", "W503"] exclude = [ ".git", "__pycache__", "build", "dist", ".eggs", "*.egg-info", ]