/
LeonBlue
/
Python_DataStructs_And_Algorithms
Обзор
Документация
Войти
/
LeonBlue
/
Python_DataStructs_And_Algorithms
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
setup.py
46 строк
2 KB
qwerty29544
Update .gitignore and README.md for project structure and documentation improvements
30 ноя 2025, 01:27
30 ноя 2025, 01:27
f68deb3
Код
Авторство
О чём код?
""" Setup configuration for Python Data Structures and Algorithms. """ from setuptools import find_packages, setup with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() setup( name="python-datastructs-algorithms", version="0.1.0", author="Your Name", author_email="your.email@example.com", description="A collection of data structures and algorithms implemented in Python", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/yourusername/Python_DataStructs_And_Algorithms", packages=find_packages(exclude=["tests", "tests.*"]), 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", ], python_requires=">=3.8", install_requires=[], extras_require={ "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", ], }, )