Files
Open-Assistant/oasst-shared/setup.py
T
2023-01-02 00:01:45 +00:00

16 lines
299 B
Python

# 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",
],
)