-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (41 loc) · 1.18 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
from os import path
from setuptools import setup, find_packages
import meshsync
DIR = path.dirname(path.abspath(__file__))
DESCRIPTION = 'The decentralized file sync solution for seamless and secure data transfer across devices.'
AUTHORS = 'Kanda-Mashiro'
EMAIL = ''
URL = 'https://github.com/Kanda-Mashiro/meshsync'
with open(path.join(DIR, 'requirements.txt')) as f:
INSTALL_PACKAGES = f.read().splitlines()
with open(path.join(DIR, 'README.md')) as f:
README = f.read()
VERSION = meshsync.__version__
setup(
name='meshsync',
version=VERSION,
description=DESCRIPTION,
long_description=README,
long_description_content_type='text/markdown',
author=AUTHORS,
author_email=EMAIL,
url=URL,
license='MIT',
packages=find_packages(),
install_requires=INSTALL_PACKAGES,
tests_require=['pytest', 'pytest-cov', 'pytest-sugar'],
entry_points={
'console_scripts': [
'meshsync = meshsync.cmd_meshsync:meshsync',
]
},
python_requires='>=3',
keywords=[
'meshsync',
'cli',
'decentration',
'file-synchronization',
'multi-devices',
],
include_package_data=True,
)