-
Notifications
You must be signed in to change notification settings - Fork 190
/
Copy pathsetup.py
33 lines (31 loc) · 982 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
"""
@Date : 2020-12-18
@Author : liyachao
"""
from setuptools import setup, find_packages
from ios_device import __version__
REQUIREMENTS = [i.strip() for i in open("requirements.txt").readlines()]
setup(name='py_ios_device',
version=__version__,
description='Get ios data and operate ios devices',
author='chenpeijie',
author_email='cpjsf@163.com',
maintainer='chenpeijie',
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",
install_requires=REQUIREMENTS,
python_requires=">=3.7",
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': {
'pyidevice=ios_device.main:cli'
}
},
)