10 lines
204 B
Python
10 lines
204 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='baihu',
|
|
version='1.0.0',
|
|
description='Baihu Panel internal helper for Python',
|
|
packages=['baihu'],
|
|
python_requires='>=3.6',
|
|
)
|