11 lines
240 B
Python
11 lines
240 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='baihu',
|
|
version='1.0.0',
|
|
description='Baihu Panel internal helper for Python',
|
|
packages=['baihu'],
|
|
package_dir={'baihu': 'baihu'},
|
|
python_requires='>=3.6',
|
|
)
|