-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
30 lines (27 loc) · 934 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
#!/usr/bin/env python
import os
from pathlib import Path
from setuptools import setup
long_description = (Path(__file__).parent / 'README.md').read_text()
requirements = (Path(__file__).parent / 'requirements.txt').read_text()
VERSION = os.getenv('VERSION', '0.0.1')
setup(
name='LiveSync',
version=VERSION,
description='Repeatedly synchronize local workspace with a (slow) remote machine',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
author='Zauberzeug GmbH',
author_email='[email protected]',
url='https://github.com/zauberzeug/livesync',
keywords='sync remote watch filesystem development deploy live hot reload',
python_requires='>=3.7',
packages=['livesync'],
install_requires=requirements.splitlines(),
entry_points={
'console_scripts': [
'livesync=livesync.livesync:main',
],
},
)