1 Star 0 Fork 0

王增亮/paddles

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
setup.py 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
Zack Cerza 提交于 2021-09-27 03:11 +08:00 . Add get_secret command
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='paddles',
version='0.1',
description='',
author='',
author_email='',
install_requires=[
"pecan",
],
test_suite='paddles',
zip_safe=False,
include_package_data=True,
packages=find_packages(exclude=['ez_setup']),
entry_points="""
[pecan.command]
populate=paddles.commands.populate:PopulateCommand
reparse=paddles.commands.reparse:ReparseCommand
dedupe=paddles.commands.dedupe:DedupeCommand
delete=paddles.commands.delete:DeleteCommand
expire_jobs=paddles.commands.expire_jobs:ExpireJobsCommand
node_jobs=paddles.commands.node_jobs:NodeJobsCommand
set_status=paddles.commands.set_status:SetStatusCommand
set_targets=paddles.commands.set_targets:SetTargetsCommand
import_nodes=paddles.commands.import_nodes:ImportNodesCommand
queue_stats=paddles.commands.queue_stats:QueueStatsCommand
node_stats=paddles.commands.node_stats:NodeStatsCommand
get_secret=paddles.commands.get_secret:GetSecretCommand
"""
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wangzengliang1/paddles.git
git@gitee.com:wangzengliang1/paddles.git
wangzengliang1
paddles
paddles
18.2.1

搜索帮助