-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
46 lines (44 loc) · 1.5 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
# -*- encoding: utf-8 *-*
from setuptools import setup, find_packages
with open('README.rst', 'r') as fd:
long_description = fd.read()
setup(
name='borg-import',
use_scm_version={
'write_to': 'src/borg_import/_version.py',
},
author='The Borg Collective (see AUTHORS file)',
author_email='[email protected]',
url='https://borgimport.readthedocs.io/',
description='Import backups made with misc. other software into borgbackup',
long_description=long_description,
license='BSD',
platforms=['Linux', ],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: System :: Archiving :: Backup',
],
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'borg-import = borg_import.main:main',
]
},
setup_requires=['setuptools_scm>=1.7', ],
install_requires=[],
python_requires=">=3.8",
)