2021-08-26 21:39:06 +08:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
Yuuki_Libs
|
2023-03-04 12:00:46 +08:00
|
|
|
(c) Neptune Studio.
|
2021-08-26 21:39:06 +08:00
|
|
|
This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='star_yuuki_bot',
|
|
|
|
version='8.0',
|
2021-12-07 15:26:38 +08:00
|
|
|
packages=['src', 'src.i18n', 'src.model', 'src.model.group', 'src.webadmin', 'src.controller'],
|
2021-08-26 21:39:06 +08:00
|
|
|
url='https://line.starinc.xyz/star-yuuki-bot/',
|
|
|
|
license='MPL-2.0',
|
2023-03-04 12:00:46 +08:00
|
|
|
author='Neptune Studio',
|
2021-08-26 21:39:06 +08:00
|
|
|
description='The perfectest LINE Group Protective BOT'
|
|
|
|
)
|