-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
47 lines (43 loc) · 1.32 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
'''
Author: Elite_zhangjunjie
CreateDate:
LastEditors: Elite_zhangjunjie
LastEditTime: 2022-11-11 17:28:13
Description:
'''
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
# 项目名称
name = "elirobots",
# 版本号
version = "0.0.7",
# 作者
author = "Elite",
# 邮箱
author_email = "[email protected]",
# url地址
url= "https://github.com/JunJie-zhang-o/eliterobot.git",
# 描述
description = "a SDK library for Elite EC Series Robot ",
# 长描述
long_description = long_description,
long_description_content_type = "text/markdown",
# 安装依赖
install_requires = ["loguru==0.6.0"],
# 自动发现根目录中所有的子包,find_packages()只能打包python包,python包中只有.py而不包括这个文件夹下 其他的数据文件。并且根目录下的.py文件不会被打包进去
packages = setuptools.find_packages(
# where=".",
# include=["elite*"],
# exclude=["elite.EliteJson_3_0_2",
# "elite.ElitePoseCali",
# "elite.pose.py"]
),
# 附加信息
classifiers = [],
# python版本要求
python_requites=">3.5",
# 关键字
keywords = ["elite","elibot","eliterobot","robot","Robot","robotSDK"]
)