3 Star 0 Fork 0

mirrors_networktocode/jetconf

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.32 KB
一键复制 编辑 原始数据 按行查看 历史
Ladislav Lhotka 提交于 2017-03-23 16:40 . Update package requirements.
from setuptools import setup, find_packages
import codecs
import os
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, 'README.rst'), encoding='utf-8') as readme:
long_description = readme.read()
setup(
name = "jetconf",
packages = find_packages(),
use_scm_version = True,
setup_requires=["setuptools_scm"],
description = "Pure Python implementation of RESTCONF server",
long_description = long_description,
url = "https://gitlab.labs.nic.cz/labs/jetconf",
author = "Pavel Spirek",
author_email = "[email protected]",
entry_points = {
"console_scripts": ["jetconf=jetconf.__main__:main"]
},
install_requires = ["yangson", "h2", "colorlog", "pyaml", "pytz"],
tests_require = ["pytest"],
keywords = ["RESTCONF", "yang", "data model", "configuration", "json"],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Development Status :: 3 - Alpha",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: System :: Monitoring",
"Topic :: System :: Systems Administration"
]
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_networktocode/jetconf.git
[email protected]:mirrors_networktocode/jetconf.git
mirrors_networktocode
jetconf
jetconf
master

搜索帮助