AKSARA-CLM-v1 / setup.py
emylton's picture
Upload setup.py with huggingface_hub
2b76d4b verified
Raw
History Blame
1.63 kB
from setuptools import setup, find_packages
setup(
name="aksara",
version="2.1.0",
author="Emylton Leunufna",
description="AKSARA - Framework yang menghasilkan CLM (Cognitive Language Model): model bahasa yang memahami makna, bukan memprediksi token",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/aksara-id/aksara",
project_urls={
"Demo": "https://huggingface.co/spaces/aksara-id/demo",
"Documentation": "https://github.com/aksara-id/aksara#readme",
},
packages=find_packages(exclude=["tests*", "tools*", "examples*", "hf_space*"]),
python_requires=">=3.9",
install_requires=[
"torch>=2.0.0",
"numpy>=1.24.0",
],
extras_require={
"dev": [
"pytest>=7.0",
"pytest-cov",
],
"yaml": [
"pyyaml>=6.0",
],
"demo": [
"gradio>=4.0.0",
],
},
entry_points={
"console_scripts": [
"aksara=aksara.cli:main",
],
},
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Natural Language :: Indonesian",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Text Processing :: Linguistic",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
],
keywords="indonesian nlp linguistics morphology reasoning knowledge-base",
)