nova-triangle / setup.py
Wayfinder6's picture
Initial commit: Nova Triangle — three small models that correct each other
13bc746 verified
raw
history blame contribute delete
885 Bytes
from setuptools import setup, find_packages
setup(
name="nova-triangle",
version="0.1.0",
description="Three small models that correct each other.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Heuremen",
author_email="hello@heuremen.org",
url="https://github.com/Wayfinder6/nova-triangle",
packages=find_packages(),
python_requires=">=3.8",
install_requires=[
"torch>=2.0",
"transformers>=4.30",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3",
],
license="Apache-2.0",
)