Files
Open-Assistant/oasst-shared/setup.py
T
2022-12-19 18:00:09 +01:00

17 lines
323 B
Python

# -*- coding: utf-8 -*-
# setup.py for the shared python modules
from distutils.core import setup
from setuptools import find_namespace_packages
setup(
name="oasst-shared",
version="1.0",
packages=find_namespace_packages(),
author="OASST Team",
install_requires=[
"pydantic==1.9.1",
],
)