[build-system] requires = ["setuptools>=61.0", "wheel"] build-backend = "setuptools.build_meta" [project] name = "lyra" version = "1.0.0" description = "Lyra - Advanced AI Discord Chatbot with Emotional Intelligence" authors = [{name = "Lyra Development Team"}] license = {text = "MIT"} readme = "README.md" requires-python = ">=3.9" classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Topic :: Communications :: Chat", "Topic :: Scientific/Engineering :: Artificial Intelligence", ] [project.scripts] lyra = "lyra.main:main" [tool.black] line-length = 100 target-version = ['py39', 'py310', 'py311'] [tool.isort] profile = "black" line_length = 100 [tool.pytest] testpaths = ["tests"] python_files = ["test_*.py"] python_classes = ["Test*"] python_functions = ["test_*"]