summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 666227dd11a1f4fa954305ecdcb0948a482184de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/python
#
# Copyright (C) 2015  Custodia project Contributors, for licensee see COPYING

from distutils.core import setup

setup(
    name='custodia',
    version='0.1.0',
    license='GPLv3+',
    maintainer='Custodia project Contributors',
    maintainer_email='simo@redhat.com',
    url='https://github.com/simo5/custodia',
    packages=['custodia', 'custodia.httpd', 'custodia.store',
              'custodia.message', 'tests'],
    data_files=[('share/man/man7', ["man/custodia.7"]),
                ('share/doc/custodia', ['LICENSE', 'README', 'API.md']),
                ('share/doc/custodia/examples', ['custodia.conf']),
                ],
    scripts=['custodia/custodia']
)