-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (26 loc) · 874 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (26 loc) · 874 Bytes
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
from pathlib import Path
from setuptools import setup
BASE = Path(__file__).parent
def get_long_description() -> str:
with open(BASE / "README.md", "r", encoding="utf-8") as f:
return f.read()
setup(
name="mdfind-wrapper",
license="Unlicense",
version="0.1.5",
url="https://github.com/dmkskn/mdfind-wrapper",
author="Dima Koskin",
author_email="dmksknn@gmail.com",
description="A python library that wraps the mdfind.",
keywords=["macos", "mdfind", "spotlight"],
python_requires=">=3.6",
long_description=get_long_description(),
long_description_content_type="text/markdown",
packages=["mdfind"],
package_data={"mdfind": ["py.typed"]},
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: MacOS",
],
)