summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: d46b7ffc65e7a989273a3a3abee69f9a10b1ff4c (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.0.1',
    license = 'GPLv3+',
    maintainer = 'Custodia project Contributors',
    maintainer_email = 'simo@redhat.com',
    url='https://github.com/simo5/custodia',
    packages = ['custodia', 'custodia.httpd', 'custodia.store'],
    data_files = [('share/man/man7', ["man/custodia.7"]),
                  ('share/doc/custodia', ['COPYING', 'README']),
                  ('share/doc/custodia/examples', ['custodia.conf']),
                 ],
    scripts = ['custodia/custodia']
)