from setuptools import setup, find_packages setup( name="nomen-ai", version="0.1.0", description="Controllable cross-lingual morpho-phonetic brand/channel name synthesis", packages=find_packages(), python_requires=">=3.10", install_requires=[ "transformers>=4.56.0", "trl>=1.5.1", "peft", "accelerate", "datasets", "rapidfuzz", "pyphen", "trackio", "huggingface_hub", "PyYAML", ], )