-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
37 lines (34 loc) · 1.27 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
32
33
34
35
36
37
import setuptools, sys
setuptools.setup(
name="watchdog-tricks",
version='0.1.1',
license="MIT",
author="Ryan Ye",
author_email="yejianye@gmail.com",
url="https://github.com/yejianye/watchdog-tricks",
description="Common tricks for watchdog (Python file system monitoring tool), including watcher for LessCss, CoffeeScript etc",
long_description=open("README.md").read(),
keywords=["watchdog","watcher","tricks"],
classifiers=[
"Environment :: Console",
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"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",
],
entry_points={
'console_scripts': [
'lesswatcher = watchdog_tricks.lesswatcher:main',
'ctagswatcher = watchdog_tricks.ctagswatcher:main',
]
},
install_requires=['watchdog==0.6.0'],
packages=['watchdog_tricks'],
)