-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 1.18 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="raykit", # 包名称
version="0.0.6", # 包版本
author="Anyi Rao", # 作者
license='MIT', # 协议简写
author_email="[email protected]", # 作者邮箱
description="A small utilis package", # 工具包简单描述
long_description=long_description, # readme 部分
long_description_content_type="text/markdown", # readme 文件类型
install_requires=[ # 工具包的依赖包
'certifi>=2019.6.16',
'numpy>=1.10.0',
'tqdm>=4.40.0'
],
url="https://github.com/AnyiRao/raykit", # 包的开源链接
packages=setuptools.find_packages(), # 不用动,会自动发现
classifiers=[ # 给出了指数和点子你的包一些额外的元数据
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)