Skip to content

Commit f4eb4a0

Browse files
🔖 Bump version to 1.1.8
1 parent ffc07e0 commit f4eb4a0

File tree

6 files changed

+43
-47
lines changed

6 files changed

+43
-47
lines changed
Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,37 @@
11
---
2-
name: 🐛 Bug report
3-
about: Report a bug to help PIQA improve
4-
title: <issue> using <module>.<component>
2+
name: "🐛 Bug report"
3+
about: "Report a bug to help PIQA improve"
4+
title: "[BUG] <issue> with <module.component>"
55
labels: bug
6-
---
6+
assignees: ''
77

8-
### 🐛 Bug
8+
---
99

10-
#### Description
10+
### Description
1111

1212
A clear description of what the bug is.
1313

14-
#### Reproduce
14+
### Reproduce
1515

1616
A minimal working example demonstrating the current behavior.
1717

1818
```python
1919
from piqa import module
2020
...
21-
y = module.component(x) # bug happens
21+
y = module.component(x) # bug happens
2222
```
2323

24-
#### Expected behavior
24+
### Expected behavior
2525

2626
A clear description of what you expected to happen.
2727

28-
#### Causes and solution
28+
### Causes and solution
2929

3030
If you know the causes and/or a solution to the bug, present them.
3131

32-
#### Environment
32+
### Environment
3333

3434
* PIQA version: [e.g. 1.0.7]
35+
* PyTorch version: [e.g. 1.8.0]
3536
* Python version: [e.g. 3.6.4]
3637
* OS: [e.g. Windows10]
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
2-
name: 📝 Documentation
3-
about: Report an issue related to the documentation
4-
title: <issue> at <module>.<component>
2+
name: "📝 Documentation"
3+
about: "Report an issue related to the documentation"
4+
title: "[DOC] <issue> with <module.component>"
55
labels: documentation
6-
---
6+
assignees: ''
77

8-
### 📝 Documentation
8+
---
99

10-
#### Description
10+
### Description
1111

1212
A clear description of what the issue is and where it is in the documentation (*e.g* [ssim.html#piqa.ssim.ssim](https://francois-rozet.github.io/piqa/ssim.html#piqa.ssim.ssim)).
1313

14-
#### Expectation
14+
### Expectation
1515

1616
A clear description of what you expected.
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
---
2-
name: ✨ Feature request
3-
about: Suggest a feature or improvement
4-
title: <suggestion> for <module>.<component>
2+
name: "✨ Feature request"
3+
about: "Suggest a feature or improvement"
4+
title: "[FEAT] <suggestion> for <module.component>"
55
labels: enhancement
6-
---
6+
assignees: ''
77

8-
### ✨ Feature
8+
---
99

10-
#### Description
10+
### Description
1111

1212
A clear description of the feature/improvement is and what **motivates** it.
1313

14-
#### Implementation
14+
### Implementation
1515

1616
A clear description of how you would like the feature to be implemented.
1717
If possible, provide reference examples (*e.g.* repository, issue, paper, ...).
1818

19-
#### Alternatives
19+
### Alternatives
2020

2121
A clear description of any alternative solutions you've considered.

.style.yapf

Lines changed: 0 additions & 10 deletions
This file was deleted.

piqa/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
specific image quality assessement metric.
66
"""
77

8-
__version__ = '1.1.7'
9-
108
from .tv import TV
119
from .psnr import PSNR
1210
from .ssim import SSIM, MS_SSIM

setup.py

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
#!/usr/bin/env python
22

3-
import os
43
import setuptools
5-
import piqa
64

75
with open('README.md', 'r') as f:
86
readme = f.read()
@@ -12,20 +10,29 @@
1210

1311
setuptools.setup(
1412
name='piqa',
15-
version=piqa.__version__,
13+
version='1.1.8',
14+
packages=setuptools.find_packages(),
1615
description='PyTorch Image Quality Assessment',
16+
keywords='image quality processing metrics torch vision',
1717
long_description=readme,
1818
long_description_content_type='text/markdown',
19-
keywords='pytorch image processing metrics',
2019
author='François Rozet',
2120
author_email='francois.rozet@outlook.com',
21+
license='MIT license',
2222
url='https://github.com/francois-rozet/piqa',
23-
install_requires=required,
24-
packages=setuptools.find_packages(),
23+
project_urls={
24+
'Documentation': 'https://francois-rozet.github.io/piqa/',
25+
'Source': 'https://github.com/francois-rozet/piqa',
26+
'Tracker': 'https://github.com/francois-rozet/piqa/issues',
27+
},
2528
classifiers=[
26-
"Programming Language :: Python :: 3",
27-
"License :: OSI Approved :: MIT License",
28-
"Operating System :: OS Independent",
29+
'Intended Audience :: Developers',
30+
'Intended Audience :: Science/Research',
31+
'License :: OSI Approved :: MIT License',
32+
'Natural Language :: English',
33+
'Operating System :: OS Independent',
34+
'Programming Language :: Python :: 3',
2935
],
36+
install_requires=required,
3037
python_requires='>=3.6',
3138
)

0 commit comments

Comments
 (0)