-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 1.05 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
import setuptools
setuptools.setup(
name="my-watchdog-tricks",
version="2.1.4",
license="MIT",
author="Martin Moss",
author_email="[email protected]",
url="https://github.com/martyzz1/my-watchdog-tricks",
description="Some tricks for watchdog (Python file system monitoring tool), including CheckBeforeAutoRestart",
long_description=open("README.md").read(),
keywords=["watchdog", "watcher", "tricks"],
classifiers=[
"Environment :: Console",
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Environment :: Other Environment",
"Topic :: Utilities",
"Topic :: System :: Monitoring",
"Topic :: System :: Filesystems",
],
install_requires=[
"watchdog[watchmedo]==3.0.0",
],
packages=["my_watchdog_tricks"],
)