mirror of
https://github.com/studio-neptune/yuuki.git
synced 2024-11-13 03:04:38 +08:00
22 lines
668 B
Python
22 lines
668 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
"""
|
||
|
Yuuki_Libs
|
||
|
(c) 2020 Star Inc.
|
||
|
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',
|
||
|
packages=['system', 'system.i18n', 'system.model', 'system.model.group', 'system.webadmin', 'system.controller'],
|
||
|
url='https://line.starinc.xyz/star-yuuki-bot/',
|
||
|
license='MPL-2.0',
|
||
|
author='Star Inc.',
|
||
|
author_email='"Star Inc." <star_inc@aol.com>',
|
||
|
description='The perfectest LINE Group Protective BOT'
|
||
|
)
|