summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 892048d91ed04bbc423ea3487ddea93547db4e10 (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
#
# 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']
)