This repository has been archived by the owner on Nov 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·45 lines (43 loc) · 1.6 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
#! /usr/bin/env python
from setuptools import setup
def load_description():
with open('docs/README.md', 'r') as f:
long_description = f.read()
return long_description
setup(
name='Viento',
version='0.6.0',
author='Tiger Sachse',
author_email='[email protected]',
description=('A CLI tool to sync files between' +
'local and remote directories'),
long_description=load_description(),
url='https://github.com/tgsachse/viento',
license='GPLv3',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities',
'Topic :: Internet',
'Topic :: Desktop Environment :: File Managers'],
keywords='rclone cloud storage remote access CLI',
packages=['viento'],
install_requires=['termcolor'],
python_requires='>=3',
data_files=[
('bin', ['viento/viento']),
('share/man/man1', ['docs/viento.1']),
('share/doc/viento', ['docs/LICENSE.txt', 'docs/README.md'])]
)