/
mssnle
/
learning-path-analyzer
Обзор
Документация
Войти
/
mssnle
/
learning-path-analyzer
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
setup.py
42 строки
1 KB
mssnle
create setup.py
13 дек 2025, 17:04
13 дек 2025, 17:04
3e62d09
Код
Авторство
О чём код?
from setuptools import setup, find_packages with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() with open("requirements.txt", "r", encoding="utf-8") as fh: requirements = [line.strip() for line in fh if line.strip() and not line.startswith("#")] setup( name="learning-path-analyzer", version="1.0.0", author="Your Name", author_email="your.email@example.com", description="Анализатор пути обучения студентов на основе логов LMS", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/yourusername/learning-path-analyzer", packages=find_packages(where="src"), package_dir={"": "src"}, classifiers=[ "Development Status :: 4 - Beta", "Intended Audience :: Education", "Topic :: Education :: Computer Aided Instruction (CAI)", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], python_requires=">=3.8", install_requires=requirements, entry_points={ "console_scripts": [ "lpa=main:main", ], }, include_package_data=True, package_data={ "": ["data/*.csv", "docs/*.md"], }, )