This repository has been archived by the owner on Mar 28, 2021. It is now read-only.
forked from CERNDocumentServer/cds-videos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
135 lines (123 loc) · 4.13 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# This file is part of Invenio.
#
# Copyright (C) 2013, 2014, 2015 CERN.
#
# Invenio 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.
#
# Invenio 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 Invenio; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
"""
CDS, Access articles, reports and multimedia content in HEP.
Links
-----
* `website <http://cds.cern.ch/>`_
* `development version <https://github.com/CERNDocumentServer/cds>`_
"""
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
import os
import sys
test_requirements = [
'unittest2>=1.1.0',
'Flask_Testing>=0.4.1',
'pytest>=2.6.0',
'pytest-cov>=1.8.0',
'pytest-pep8>=1.0.6',
'coverage>=3.7.1',
]
class PyTest(TestCommand):
"""PyTest Test."""
user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")]
def initialize_options(self):
"""Init pytest."""
TestCommand.initialize_options(self)
self.pytest_args = []
try:
from ConfigParser import ConfigParser
except ImportError:
from configparser import ConfigParser
config = ConfigParser()
config.read('pytest.ini')
self.pytest_args = config.get('pytest', 'addopts').split(' ')
def finalize_options(self):
"""Finalize pytest."""
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
"""Run tests."""
# import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(self.pytest_args)
sys.exit(errno)
# loads __version__
g = {}
with open(os.path.join("cds", "version.py"), "rt") as fp:
exec(fp.read(), g)
version = g["__version__"]
setup(
name='CDS',
version=version,
url='http://cds.cern.ch/',
license='GPLv3',
author='CERN',
author_email='[email protected]',
description='Access articles, reports and multimedia content in HEP',
long_description=__doc__,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=[
"mixer==4.9.5",
"Flask-IIIF>=0.1.0",
],
extras_require={
'development': [
"Flask-DebugToolbar>=0.9",
'setuptools-bower>=0.2'
],
'tests': test_requirements
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GPLv3 License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
tests_require=test_requirements,
entry_points={
'invenio.config': [
"cds = cds.config"
],
'dojson.contrib.cds.marc21': [
'bd01x09x = cds.base.dojson.marc21.fields.default.bd01x09x',
'bd2xx = cds.base.dojson.marc21.fields.default.bd2xx',
'bd5xx = cds.base.dojson.marc21.fields.default.bd5xx',
'bd69x = cds.base.dojson.marc21.fields.default.bd69x',
'bd7xx = cds.base.dojson.marc21.fields.default.bd7xx',
'bd8xx = cds.base.dojson.marc21.fields.default.bd8xx',
'bd9xx = cds.base.dojson.marc21.fields.default.bd9xx',
],
'dojson.contrib.cds.marc21.album': [
'album = cds.base.dojson.marc21.fields.album'
],
'dojson.contrib.cds.marc21.image': [
'image = cds.base.dojson.marc21.fields.image'
],
},
test_suite='invenio.testsuite.suite',
cmdclass={'test': PyTest},
)