Skip to content

Commit 5cfdacc

Browse files
committed
working on toml file
1 parent adf9cb0 commit 5cfdacc

File tree

5 files changed

+26
-20
lines changed

5 files changed

+26
-20
lines changed

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@
3434
author = 'Giulio Gabrieli'
3535

3636
# The short X.Y version
37-
version = '0.0.8.7'
37+
version = '0.0.8.8'
3838
# The full version, including alpha/beta/rc tags
39-
release = '0.0.8.7'
39+
release = '0.0.8.8'
4040

4141

4242
# -- General configuration ---------------------------------------------------

pyaesthetics.egg-info/PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: pyaesthetics
3-
Version: 0.0.8.7
3+
Version: 0.0.8.8
44
Summary: Images aesthetic analysis
55
Home-page: https://github.com/Gabrock94/pyaesthetics
66
Author: Giulio Gabrieli

pyaesthetics/.vscode/launch.json

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

pyaesthetics/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from . import visualcomplexity
1515

1616
# This is used to print out the package version
17-
__version__ = '0.0.8.7' #Version Control
17+
__version__ = '0.0.8.8' #Version Control
1818

1919
print("Thank you for using pyaesthetics. If you use it in your work, please cite:")
2020
print("Gabrieli, G., Bornstein, M. H., Setoh, P., & Esposito, G. (2023). Machine learning estimation of users’ implicit and explicit aesthetic judgments of web-pages. Behaviour & Information Technology, 42(4), 392-402.")

pyproject.toml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,31 @@
11
[tool.poetry]
22
name = "pyaesthetics"
3-
version = "0.0.8.7"
3+
version = "0.0.8.8"
44
description = "A python package to estimate visual features about the aesthetic appearance of still images."
55
authors = ["Giulio Gabrieli <[email protected]>"]
66
license = "GPL-3.0"
77
readme = "README.md"
8+
classifiers = [
9+
'Development Status :: 5 - Production/Stable',
10+
'Intended Audience :: Science/Research',
11+
'Programming Language :: Python',
12+
'Programming Language :: Python :: 3',
13+
'Programming Language :: Python :: 3.10',
14+
'Programming Language :: Python :: 3.11',
15+
'Programming Language :: Python :: 3.12',
16+
'Topic :: Scientific/Engineering',
17+
'Topic :: Scientific/Engineering :: Image Processing',
18+
'Topic :: Scientific/Engineering :: Visualization',
19+
'Topic :: Scientific/Engineering :: Information Analysis',
20+
'Topic :: Multimedia :: Graphics',
21+
'Typing :: Typed',
22+
'Operating System :: Microsoft :: Windows',
23+
'Operating System :: POSIX',
24+
'Operating System :: Unix',
25+
'Operating System :: MacOS',
26+
]
27+
keywords = ["Image", "Analysis", "Aesthetic", "Visual", "Features", "Empirical Aesthetic"]
28+
829

930
[project.urls]
1031
homepage = "https://github.com/Gabrock94/pyaesthetics"

0 commit comments

Comments
 (0)