1 Star 1 Fork 0

g1879 / TimePinner

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 832 Bytes
一键复制 编辑 原始数据 按行查看 历史
g1879 提交于 2023-01-15 00:42 . 0.1.1使用存根包保存存根文件
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
setup(
name="TimePinner",
version="0.1.1",
author="g1879",
author_email="g1879@qq.com",
description="一个用于代码中计时的小工具。",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
keywords="stopwatch",
url="https://gitee.com/g1879/TimePinner",
include_package_data=True,
packages=find_packages(),
install_requires=["TimePinner-stubs"],
classifiers=[
"Programming Language :: Python :: 3.6",
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
python_requires='>=3.6'
)
Python
1
https://gitee.com/g1879/TimePinner.git
git@gitee.com:g1879/TimePinner.git
g1879
TimePinner
TimePinner
master

搜索帮助