mirror of
https://github.com/borgmatic-collective/borgmatic.git
synced 2026-08-03 23:13:02 +02:00
Changes to support release on PyPI. Now pip installable by name!
This commit is contained in:
@@ -1,11 +1,26 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
|
||||
VERSION = '0.1.5'
|
||||
|
||||
|
||||
setup(
|
||||
name='atticmatic',
|
||||
version='0.1.4',
|
||||
version=VERSION,
|
||||
description='A wrapper script for Attic/Borg backup software that creates and prunes backups',
|
||||
author='Dan Helfman',
|
||||
author_email='witten@torsion.org',
|
||||
url='https://torsion.org/atticmatic',
|
||||
download_url='https://torsion.org/hg/atticmatic/archive/%s.tar.gz' % VERSION,
|
||||
classifiers=(
|
||||
'Development Status :: 5 - Production/Stable',
|
||||
'Environment :: Console',
|
||||
'Intended Audience :: System Administrators',
|
||||
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
||||
'Programming Language :: Python',
|
||||
'Topic :: Security :: Cryptography',
|
||||
'Topic :: System :: Archiving :: Backup',
|
||||
),
|
||||
packages=find_packages(),
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
|
||||
Reference in New Issue
Block a user