Skip to content

Commit 22dec25

Browse files
committed
doc updates for release
1 parent a441edd commit 22dec25

7 files changed

+46
-9
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
build/
22
dist/
33
diefpy.egg-info/
4+
*.pyc
5+
.pypirc

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2017 Maribel Acosta
3+
Copyright (c) 2021 Philipp D. Rohde, Nikoleta Themeliotou
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

LICENSE.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Philipp D. Rohde, Nikoleta Themeliotou
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
[![Build Status](https://github.com/SDM-TIB/diefpy/actions/workflows/testroutine.yml/badge.svg?branch=master)](https://github.com/SDM-TIB/diefpy/actions/workflows/testroutine.yml)
2+
[![Latest Release](http://img.shields.io/github/release/SDM-TIB/diefpy.svg)](https://github.com/SDM-TIB/diefpy/releases)
3+
[![Python Versions](https://img.shields.io/pypi/pyversions/diefpy)](https://pypi.org/project/diefpy)
4+
[![Package Format](https://img.shields.io/pypi/format/diefpy)](https://pypi.org/project/diefpy)
5+
[![Package Status](https://img.shields.io/pypi/status/diefpy)](https://pypi.org/project/diefpy)
6+
[![Package Version](https://img.shields.io/pypi/v/diefpy)](https://pypi.org/project/diefpy)
27
[![DOI](https://zenodo.org/badge/109045351.svg)](https://zenodo.org/badge/latestdoi/109045351)
38
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
49

@@ -13,6 +18,8 @@ dief@t and dief@k rely on the computation of the area under the curve of
1318
answer traces, and thus capturing the answer rate concentration over a time
1419
interval.
1520

21+
This is a fork of the [original diefpy repo](https://github.com/maribelacosta/diefpy) providing a complete Python3 version.
22+
1623
### Description
1724

1825
![alt text](docs/diefpy-overview.png "Overview of Result Plots")
@@ -77,6 +84,6 @@ diefpy.plot_all_continuous_efficiency_with_diefk(exp2, ["#ECC30B","#D56062","#84
7784
```
7885

7986
### Publications
80-
[1] Maribel Acosta, Maria-Esther Vidal, York Sure-Vetter. Diefficiency Metrics: Measuring the Continuous Efficiency of Query Processing Approaches. In Proceedings of the International Semantic Web Conference, 2017. Nominated to Best Paper Award at the Resource Track.
87+
[1] Maribel Acosta, Maria-Esther Vidal, York Sure-Vetter. Diefficiency Metrics: Measuring the Continuous Efficiency of Query Processing Approaches. In Proceedings of the International Semantic Web Conference, 2017. Nominated to Best Paper Award at the Resource Track. [https://doi.org/10.1007/978-3-319-68204-4_1](https://doi.org/10.1007/978-3-319-68204-4_1)
8188

82-
[2] Maribel Acosta, Maria-Esther Vidal. Measuring the Performance of Continuous Query Processing Approaches with dief@t and dief@k. In the International Semantic Web Conference, Posters and Demos, 2017.
89+
[2] Maribel Acosta, Maria-Esther Vidal. Measuring the Performance of Continuous Query Processing Approaches with dief@t and dief@k. In the International Semantic Web Conference, Posters and Demos, 2017. [online](https://iswc2017.ai.wu.ac.at/wp-content/uploads/papers/PostersDemos/paper602.pdf)

docs/diefpy-overview.png

41.7 KB
Loading

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

+11-6
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,29 @@ def readme():
77

88

99
setup(name='diefpy',
10-
version='0.2',
10+
version='1.0.0',
1111
packages=['diefpy'],
12-
url='https://github.com/maribelacosta/diefpy',
1312
license='MIT',
14-
author='Maribel Acosta',
15-
author_email='[email protected]',
13+
author='Philipp D. Rohde, Nikoleta Themeliotou',
14+
author_email='[email protected]',
15+
url = 'https://github.com/SDM-TIB/diefpy',
16+
download_url = 'https://github.com/SDM-TIB/diefpy/archive/refs/tags/v1.0.0.tar.gz',
1617
description='Python package for computing diefficiency metrics dief@t and dief@k.',
1718
keywords='metrics benchmarking efficiency diefficiency-metrics dief python',
1819
install_requires=['matplotlib==3.2.2', 'numpy>=1.8.0'],
1920
include_package_data=True,
2021
package_data={'dief': ['data/*']},
21-
python_requires='>3.6',
22+
python_requires='>=3.6',
2223
classifiers=[
23-
'Development Status :: 4 - Beta',
24+
'Development Status :: 5 - Production/Stable',
2425
'Framework :: Matplotlib',
2526
'Programming Language :: Python',
2627
'Programming Language :: Python :: 3',
2728
'Programming Language :: Python :: 3 :: Only',
29+
'Programming Language :: Python :: 3.6',
30+
'Programming Language :: Python :: 3.7',
31+
'Programming Language :: Python :: 3.8',
32+
'Programming Language :: Python :: 3.9',
2833
'License :: OSI Approved :: MIT License',
2934
'Topic :: System :: Benchmark',
3035
'Typing :: Typed'

0 commit comments

Comments
 (0)