-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 754 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (22 loc) · 754 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
from setuptools import setup, find_packages
# import readme file
with open("README.md", "r") as f:
description = f.read()
setup(
description="A package for notifying users about command execution in the terminal",
name="terminal_notifier", # Replace with your package name
version="0.8", # Replace with your package version
author="Anish Tipnis",
packages=find_packages(),
python_requires=">=3.6",
install_requires=[
"plyer",
"playsound"
],
long_description=description,
long_description_content_type="text/markdown",
include_package_data=True, # Include package data specified by MANIFEST.in
package_data={
"": ["*.mp3"], # Include all mp3 files in the package
}
)