Welcome to mirror list, hosted at ThFree Co, Russian Federation.

setup.py - github.com/bareos/python-bareos.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2f1320b4b5463bca8a4fbbd346b525b2f44e4796 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/python

from setuptools import find_packages, setup

setup(
    name='python-bareos',
    version='0.3',
    author='Joerg Steffens',
    author_email='joerg.steffens@bareos.com',
    packages=find_packages(),
    scripts=['bin/bconsole.py', 'bin/bconsole-json.py', 'bin/bareos-fd-connect.py'],
    url='https://github.com/joergsteffens/python-bareos/',
    # What does your project relate to?
    keywords='bareos',
    description='Network socket connection to the Bareos backup system.',
    long_description=open('README.rst').read(),
    install_requires=[
        #'hmac',
        #'socket',
        'dateutil',
    ]
)