-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (24 loc) · 676 Bytes
/
setup.py
File metadata and controls
30 lines (24 loc) · 676 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
27
28
29
30
# coding: utf-8
from setuptools import setup, find_packages
__VERSION__ = '0.5.0'
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license_txt = f.read()
setup(
name='pywatcher',
version=__VERSION__,
description='monitor file and reload process. like gulp watch.',
long_description=readme,
entry_points={
"console_scripts": [
"pywatcher = pywatcher.command:main"
]
},
author='denzow',
author_email='denzow@gmail.com',
url='https://github.com/denzow/pywatcher',
license=license_txt,
packages=find_packages(exclude=('example',)),
install_requires=['watchdog'],
)