1 Star 0 Fork 0

你您/graphdb-orm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.33 KB
一键复制 编辑 原始数据 按行查看 历史
你您 提交于 2024-03-13 11:35 . feat:修改打包结构
import setuptools #导入setuptools打包工具
import os
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="graphdbs", #
version="0.0.1", #包版本号,便于维护版本
author="lilin", #作者,可以写自己的姓名
author_email="[email protected]", #作者联系方式,可写自己的邮箱地址
description="图数据库操作api",#包的简述
long_description=long_description, #包的详细介绍,一般在README.md文件内
long_description_content_type="text/markdown",
url="[email protected]:linux_23/graphdb-orm.git", #自己项目地址,比如github的项目地址
packages=['graphdbs', "graphdbs.drives", 'graphdbs.graphlitedb'],
package_dir={'graphdbs': '.', 'graphdbs.drives': 'drives', 'graphdbs.graphlitedb': 'graphlitedb'},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
include_package_data=True,
data_files=[
("graphdbs/graphlitedb/sql", ["graphlitedb/sql/"+f for f in os.listdir("graphlitedb/sql")]),
],
python_requires='>=3.5', #对python的最低版本要求
install_requires=[],
entry_points={
'console_scripts': [
]
},
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/linux_23/graphdb-orm.git
[email protected]:linux_23/graphdb-orm.git
linux_23
graphdb-orm
graphdb-orm
master

搜索帮助