-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
setup: add myself as maintainer, fix classifiers missing a comma
- Loading branch information
Showing
1 changed file
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -571,6 +571,8 @@ def build_appimage(self): | |
version=VERSION, | ||
author="Daniele Pantaleone", | ||
author_email="[email protected]", | ||
maintainer="Manuel Namici", | ||
maintainer_email="[email protected]", | ||
description="Eddy is a graphical editor for the specification and visualization of Graphol ontologies.", | ||
long_description="Eddy is a graphical editor for the construction of Graphol ontologies. Eddy features a " | ||
"design environment specifically thought out for generating Graphol ontologies through ad-hoc " | ||
|
@@ -585,7 +587,7 @@ def build_appimage(self): | |
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Environment :: MacOS X :: Cocoa', | ||
'Environment :: Win32 (MS Windows)' | ||
'Environment :: Win32 (MS Windows)', | ||
'Environment :: X11 Applications :: Qt', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', | ||
|
@@ -600,7 +602,7 @@ def build_appimage(self): | |
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12', | ||
'Topic :: Scientific/Engineering :: Artificial Intelligence', | ||
'Topic :: Utilities' | ||
'Topic :: Utilities', | ||
], | ||
python_requires='>=3.9', | ||
install_requires=[ | ||
|