-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy pathsetup.py
31 lines (29 loc) · 800 Bytes
/
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
# -*- coding: utf-8 -*-
"""
-------------------------------------------------
File Name: setup
Description :
Author : CoolCat
date: 2019/4/29
-------------------------------------------------
Change Activity:
2019/4/29:
-------------------------------------------------
"""
__author__ = 'CoolCat'
from distutils.core import setup
setup(
name='filemon',
version='1.3',
author='CoolCat',
author_email='root@thekingofduck.com',
packages=['filemon'],
scripts=['filemon/filemon.py'],
url='https://github.com/TheKingOfDuck/FileMonitor',
description='A file monitor tool compatible with Windows, Linux, And MacOS.',
install_requires=[
"watchdog==6.0.0",
"filemon",
"argparse",
],
)