| from setuptools import setup | |
| setup( | |
| name="Spark-Chemistry-X1-13B", | |
| version="0.1.0", | |
| py_modules=["tokenization_spark", "tokenization_spark_fast","configuration_spark"], | |
| install_requires=[ | |
| "transformers>=4.30.0", | |
| "sentencepiece", | |
| ], | |
| python_requires=">=3.8", | |
| description="Installs tokenization_spark and tokenization_spark_fast as top-level modules.", | |
| ) | |