1 Star 0 Fork 5

liubaoxiong/lightKG

forked from lilujunai/lightKG 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.20 KB
一键复制 编辑 原始数据 按行查看 历史
lightsmile 提交于 2019-04-14 14:32 . fix utils not find bug
from distutils.core import setup
import setuptools
with open('./README.md', 'r', encoding='utf8') as f:
long_description = f.read()
with open('./requirements.txt', 'r', encoding='utf8') as f:
install_requires = list(map(lambda x: x.strip(), f.readlines()))
setup(
name='lightKG',
version='0.1.0.1',
description="lightsmile's knowledge graph library",
author='lightsmile',
author_email='iamlightsmile@gmail.com',
url='https://github.com/smilelight/lightKG',
packages=setuptools.find_packages(),
install_requires=install_requires,
long_description=long_description,
long_description_content_type='text/markdown',
license='Apache-2.0',
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries'
],
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liubaoxiong/lightKG.git
git@gitee.com:liubaoxiong/lightKG.git
liubaoxiong
lightKG
lightKG
master

搜索帮助