setup   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 52
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 31
dl 0
loc 52
rs 10
c 0
b 0
f 0
1
from codecs import open
2
from os import path
3
4
from setuptools import setup, find_packages
5
6
here = path.abspath(path.dirname(__file__))
7
8
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
9
    long_description = f.read()
10
11
setup(
12
    name='BackupPC-Clone',
13
14
    version='1.0.1',
15
16
    description='A tool for cloning the data of a BackupPC instance',
17
    long_description=long_description,
18
19
    url='https://github.com/SetBased/BackupPC-Clone',
20
21
    author='Set Based IT Consultancy',
22
    author_email='[email protected]',
23
24
    license='MIT',
25
26
    classifiers=[
27
        'Development Status :: 5 - Production/Stable',
28
29
        'Intended Audience :: System Administrators',
30
        'Topic :: System :: Archiving :: Backup',
31
32
        'License :: OSI Approved :: MIT License',
33
34
        'Programming Language :: Python :: 3',
35
        'Programming Language :: Python :: 3.6',
36
        'Programming Language :: Python :: 3.7',
37
    ],
38
39
    keywords='BackupPC, clone, copy',
40
41
    packages=find_packages(exclude=['build', 'test']),
42
43
    install_requires=['cleo==0.6.8'],
44
45
    entry_points={
46
        'console_scripts': [
47
            'backuppc-clone = backuppc_clone:main',
48
        ],
49
    },
50
51
    package_data={'': ['lib/ddl/*.sql']},
52
)
53