1 Star 0 Fork 0

Benben Miao / FishRatio

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
setup.py 1.73 KB
AI 代码解读
一键复制 编辑 原始数据 按行查看 历史
Benben Miao 提交于 2021-08-05 00:00 . Add description to pypi home page
#!/usr/bin/python
# _*_ coding:utf-8 _*_
from setuptools import setup, find_packages
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
readme = 'fishratio/README.md'
# https://pic3.zhimg.com/v2-4563e810d05ec25ce283c7f54a271e2e_r.jpg
setup(
name="fishratio",
version="1.1.3",
url="https://github.com/benben-miao/FishRatio",
keywords=["CLI", "Biology", "Statistics"],
description="Calculate the ratio and logarithmic value of species contained in several genus of a family to all species in this family.",
long_description=long_description,
long_description_content_type='text/markdown',
download_url="https://pypi.org/project/fishratio",
author="benben-miao",
author_email="benben.miao@outlook.com",
maintainer="benben-miao",
maintainer_email="benben.miao@outlook.com",
license="MIT License",
# include_package_data=True,
platforms="any",
install_requires=['pandas', 'numpy', 'openpyxl', 'xlrd'],
# packages=find_packages(),
packages=['fishratio'],
entry_points={
'console_scripts': ['fishratio=fishratio.fishratio:calculate'],
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
data_files=[readme],
package_data={
'':['examples/*.xlsx']
},
include_package_data=True
# exclude_package_data={
# }
)
# python setup.py bdist_wheel
# pip install dist\*.whl
# python setup.py sdist
# python setup.py install
# pip install twine
# twine upload dist/*
Python
1
https://gitee.com/benben-miao/FishRatio.git
git@gitee.com:benben-miao/FishRatio.git
benben-miao
FishRatio
FishRatio
main

搜索帮助