-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 869 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
32
33
34
35
36
from setuptools import setup, find_packages
import platform
packages = [
'Click',
'python-dateutil',
'nose',
'paramiko',
'pyopenssl',
'pyftpdlib',
'dateparser',
'colorlog',
'SQLAlchemy-JSONField',
'SQLAlchemy'
]
if 'CYGWIN' not in platform.system():
packages.append('pysendfile')
setup(
name='metasync',
version='0.1',
packages=find_packages(),
include_package_data=True,
install_requires=packages,
entry_points='''
[console_scripts]
ms_verify=metasync.cli:ep_verify
ms_show_history=metasync.cli:ep_show_history
ms_add_path=metasync.cli:ep_add_path
ms_update_path=metasync.cli:ep_update_path
ms_add_mirror=metasync.cli:ep_add_mirror
ms_walk_scan_mirror=metasync.cli:ep_walk_scan_mirror
''',
)