17 lines
273 B
Python
17 lines
273 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='rs',
|
|
version='0.1',
|
|
py_modules=['sync'],
|
|
install_requires=[
|
|
'Click',
|
|
'pyyaml',
|
|
'pyinotify'
|
|
],
|
|
entry_points='''
|
|
[console_scripts]
|
|
rs=sync:app
|
|
'''
|
|
)
|