from setuptools import setup, find_packages with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() setup( name="myanmar-ghost", version="1.0.0", author="Aung Myo Kyaw", author_email="amkyawdev@example.com", description="Advanced Myanmar Language Understanding Model with Multi-Modal Fusion", long_description=long_description, long_description_content_type="text/markdown", url="https://huggingface.co/amkyawdev/Myanmar-Ghost-Instruct", packages=find_packages(where="src"), package_dir={"": "src"}, classifiers=[ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Topic :: Scientific/Engineering :: Artificial Intelligence", "Topic :: Text Processing :: Linguistic", ], python_requires=">=3.10", install_requires=[ "torch>=2.0.0", "transformers>=4.35.0", "datasets>=2.14.0", "librosa>=0.10.0", ], extras_require={ "dev": [ "pytest>=7.4.0", "black>=23.0.0", "isort>=5.12.0", ], "xai": [ "shap>=0.42.0", "lime>=0.3.0", ], "federated": [ "flwr>=1.5.0", ], }, )