Ai
1 Star 0 Fork 0

一问三不知/tq_performance_utils

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
setup.py 1.63 KB
一键复制 编辑 原始数据 按行查看 历史
from setuptools import setup, find_packages
import os.path
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
long_description = fh.read()
VERSION = '0.2.2'
DESCRIPTION = 'Some simple utils for performance testing.'
setup(
name='tq_performance_utils',
version=VERSION,
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=long_description,
url='https://gitee.com/torchW/tq_performance_utils.git',
author='TripleQuiz',
author_email='triple_quiz@163.com',
license='MIT',
keywords=['python', 'util', 'performance', 'profile'],
python_requires='>=3.7, <3.12',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Intended Audience :: Developers',
'Operating System :: Microsoft :: Windows',
'Natural Language :: Chinese (Simplified)',
],
packages=find_packages(include=['tq_performance_utils', 'tq_performance_utils.*']),
install_requires=[
'pyinstrument>=4.6.2',
],
include_package_data=True,
exclude_package_data={},
zip_safe=False,
)
"""
打包发布步骤:
1. 测试代码
2. commit & create tag
3. 打包源分发包和轮子,命令:python setup.py sdist bdist_wheel
4. PyPI发布,命令:twine upload -r tq_performance_utils dist/*
"""
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/torchW/tq_performance_utils.git
git@gitee.com:torchW/tq_performance_utils.git
torchW
tq_performance_utils
tq_performance_utils
dev

搜索帮助