-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (37 loc) · 1.26 KB
/
setup.py
File metadata and controls
42 lines (37 loc) · 1.26 KB
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
"""Grenier.
A wrapper around bup-encfs, restic, rsync, and rclone.
"""
from setuptools import setup
setup(
name='grenier',
version='0.2.0',
description='A wrapper around bup-encfs/restic, rsync, and rclone.',
# long_description=long_description,
url='https://github.com/barsanuphe/grenier',
author='barsanuphe',
author_email='mon.adresse.publique@gmail.com',
license='GPLv3+',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 2 - Pre-Alpha'
'Intended Audience :: Developers',
'Operating System :: POSIX :: Linux',
'Topic :: System :: Archiving :: Backup',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3.5',
],
keywords='backup bup restic configuration wrapper',
packages=['grenier'],
install_requires=['pyyaml', 'notify2', 'progressbar', 'pyxdg', 'pexpect', 'keepassx'],
# If there are data files included in your packages that need to be
# installed, specify them here.
# package_data={
# 'sample': ['package_data.dat'],
# },
# main
entry_points={
'console_scripts': [
'grenier=grenier:main',
],
},
)