This repository has been archived by the owner on Jul 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
82 lines (78 loc) · 3.1 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# -*- coding: utf-8 -*-
#
# Copyright (C) 2012 CERN.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, see <http://www.gnu.org/licenses/>.
from setuptools import setup, find_packages
setup(
name='invenio-fabric',
version='0.2.8',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=False,
zip_safe=False,
install_requires=['distribute', 'Fabric>=1.5', 'Jinja2', 'virtualenvwrapper','Sphinx'],
data_files=[
('share/atlantis/',[
'examples/atlantis/fabfile.py',
'examples/atlantis/fabfile_minimal.py',
]),
('share/atlantis/common/',[
'examples/atlantis/common/activate-profile.tpl',
'examples/atlantis/common/requirements.txt',
'examples/atlantis/common/requirements-extra.txt',
'examples/atlantis/common/rundevserver.py.tpl',
]),
('share/atlantis/common/etc/apache/',[
'examples/atlantis/common/etc/apache/invenio-apache-vhost.conf',
'examples/atlantis/common/etc/apache/invenio-apache-vhost-ssl.conf',
]),
('share/openaire/',[
'examples/openaire/fabfile.py',
]),
('share/openaire/common/',[
'examples/openaire/common/activate-profile.tpl',
'examples/openaire/common/config_local.py.tpl',
'examples/openaire/common/requirements.txt',
'examples/openaire/common/requirements-extra.txt',
'examples/openaire/common/rundevserver.py.tpl',
]),
('share/openaire/common/etc/',[
'examples/openaire/common/etc/invenio-local.conf',
]),
('share/openaire/int/etc/',[
'examples/openaire/int/etc/invenio-local.conf',
]),
('share/inspire/',[
'examples/inspire/fabfile.py',
]),
('share/inspire/common/',[
'examples/inspire/common/activate-profile.tpl',
'examples/inspire/common/config_local.py.tpl',
'examples/inspire/common/config-local.mk',
'examples/inspire/common/requirements.txt',
'examples/inspire/common/requirements-extra.txt',
'examples/inspire/common/rundevserver.py.tpl',
]),
('share/inspire/common/etc/',[
'examples/inspire/common/etc/invenio-local.conf',
]),
],
author='CERN',
author_email='[email protected]',
description='Fabric tasks for working with Invenio repository software',
license="GPL",
keywords="invenio fabric CERN",
url="https://github.com/lnielsen-cern/invenio-fabric",
)