mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-27 16:10:30 +08:00
18 lines
354 B
Python
18 lines
354 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",
|
|
"aiohttp==3.8.3",
|
|
"aiohttp[speedups]",
|
|
],
|
|
)
|