2 Star 0 Fork 0

mirrors_kivy/ncis-inspector

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
setup.py 1.33 KB
一键复制 编辑 原始数据 按行查看 历史
"""
NCIS - Not a Clever Inspector Service - Kivy module
"""
from setuptools import setup, find_packages
from os import path
from io import open
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="ncis-inspector",
version="0.1",
description="Client/GUI for NCIS",
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/kivy/ncis-inspector',
author='Kivy Team',
author_email='kivy-dev@googlegroups.com',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=['requests', 'sseclient-py', 'kaki'],
entry_points={
'console_scripts': [
'inspector=ncis_inspector.standalone:main'
]
},
project_urls={
'Bug Reports': 'https://github.com/kivy/ncis-inspector/issues',
'Source': 'https://github.com/kivy/ncis-inspector/',
},
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_kivy/ncis-inspector.git
git@gitee.com:mirrors_kivy/ncis-inspector.git
mirrors_kivy
ncis-inspector
ncis-inspector
master

搜索帮助