-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (37 loc) · 1.21 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
"""
Setup module.
"""
import setuptools
LONG_DESCRIPTION = """
Functions to access files on an MTP device (smartphone, etc.) under Windows.
Only some directory and file access and functions are implemented. For example:
✔️ Get all MTP devices
✔️ Scan directories
✔️ Create/delete directories
✔️ Read/Write/delete files
👀 Check out the documentation in the docs folder
## Installation
```python
python -m pip install win_mtp
"""
setuptools.setup(
name="win_mtp",
version="0.3.0",
author="Heribert Füchtenhans",
author_email="[email protected]",
description="Functions to access files on an MTP device (smartphone, etc.) under Windows.",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
],
url="https://github.com/heribert17/wpd_mtp",
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
install_requires=["comtypes>=1.1.14"],
python_requires=">=3.10",
include_package_data=True,
package_data={'wpd_mtp': ['images/*.*']}
)