forked from YueChen-C/py-ios-device
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (37 loc) · 1007 Bytes
/
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
"""
@Date : 2020-12-18
@Author : liyachao
"""
from setuptools import setup,find_packages
# 第三方依赖
requires = [
"cffi==1.14.4",
"construct==2.10.56",
"cryptography==3.3.2",
"pyasn1==0.4.8",
"pycparser==2.20",
"pyOpenSSL==20.0.0",
"six==1.15.0",
"requests>=2.25.1",
'click>=7.1.2',
'coloredlogs>=3.3.2',
]
setup(name='py_ios_device',
version="2.2.3",
description='Get ios data and operate ios devices',
author='chenpeijie & liyachao',
author_email='[email protected]',
maintainer='chenpeijie & liyachao',
maintainer_email='',
url='https://github.com/YueChen-C/py-ios-device',
packages=find_packages(),
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
platforms=["any"],
install_requires=requires, # 第三方库依赖
entry_points={
'console_scripts':{
'pyidevice=ios_device.main:cli'
}
},
)