2 Star 11 Fork 1

Davin / TMD-TOP

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.12 KB
一键复制 编辑 原始数据 按行查看 历史
CDWEN 提交于 2024-02-21 18:40 . 更新:添加logo
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="tmd-top",
version="2.0.6",
author="Davin",
author_email="949178863@qq.com",
description="linux服务器流量分析工具",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://gitee.com/Davin168/tmd-top", # 项目GitHub地址或主页
packages=find_packages(where="src"),
package_dir={"": "src"},
package_data={
"tmd_top": ["data/*.mmdb", "data/*.db"],
},
python_requires=">=3.8", # 指定支持的Python版本
install_requires=[
"textual==0.51.0",
"typing_extensions==4.9.0",
"rich==13.7.0",
"geoip2==4.8.0",
],
classifiers=[
# Add classifiers to specify the project's target audience, license, etc.
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
'tmd-top=tmd_top.main:main',
],
},
)
Python
1
https://gitee.com/Davin168/tmd-top.git
git@gitee.com:Davin168/tmd-top.git
Davin168
tmd-top
TMD-TOP
master

搜索帮助