Ai
1 Star 0 Fork 0

一问三不知/tq_datasets

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
setup.py 1.72 KB
一键复制 编辑 原始数据 按行查看 历史
一问三不知 提交于 2024-12-26 16:50 +08:00 . new version:0.1.1,
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.1.1' # 0.0.1-1, '-1'表示post,修复对应版本
DESCRIPTION = 'Some simple interface for the operations of dataset.'
setup(
name='tq_datasets',
version=VERSION,
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=long_description,
url='https://gitee.com/torchW/tq_datasets.git',
author='TripleQuiz',
author_email='triple_quiz@163.com',
license='MIT',
keywords=['python', 'util', 'datasets', 'operation', 'interface', 'abc/factory'],
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_datasets', 'tq_datasets.*']),
install_requires=[ # 需要安装的第三方库及版本,e.g. 'pydot==3.0.1'
'tq-utils>=0.2.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_datasets dist/*
"""
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/torchW/tq_datasets.git
git@gitee.com:torchW/tq_datasets.git
torchW
tq_datasets
tq_datasets
master

搜索帮助