-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (40 loc) · 1.2 KB
/
setup.py
File metadata and controls
42 lines (40 loc) · 1.2 KB
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
"""Setup script for Stream Watcher."""
from setuptools import setup, find_packages
setup(
name="stream-watcher",
version="1.0.0",
description="Cross-platform automated file sync tool for the ACB Media team",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author="ACB Media",
python_requires=">=3.13",
packages=find_packages(),
install_requires=[
"watchdog>=3.0.0",
"pystray>=0.19.0",
"Pillow>=10.0.0",
"keyboard>=0.13.5",
],
extras_require={
"windows": [
"pywin32>=306",
"accessible_output2>=0.17",
],
},
entry_points={
"console_scripts": [
"stream-watcher=acb_sync.__main__:main",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: End Users/Desktop",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
],
)