From 2b593f570fdb818ddd8d6c1f58fe0f0cb197c007 Mon Sep 17 00:00:00 2001 From: Casper Welzel Andersen Date: Mon, 25 Oct 2021 15:30:16 +0200 Subject: [PATCH 1/2] Reset version to 0.1.0 Update PyPI classifiers. Add Casper W. Andersen to list of authors. --- ontopy/__init__.py | 2 +- setup.py | 14 ++++++++------ 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/ontopy/__init__.py b/ontopy/__init__.py index 94e9b84d1..8f46e0682 100644 --- a/ontopy/__init__.py +++ b/ontopy/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- import sys -__version__ = '1.0.1' +__version__ = '0.1.0' # Ensure correct Python version if sys.version_info < (3, 6): diff --git a/setup.py b/setup.py index fb6615a34..c66941052 100644 --- a/setup.py +++ b/setup.py @@ -61,17 +61,17 @@ def fglob(patt): setuptools.setup( name='EMMOntoPy', version=VERSION, - author='Jesper Friis, Francesca Lønstad Bleken, Bjørn Tore Løvfall', + author='Jesper Friis, Francesca Lønstad Bleken, Casper Welzel Andersen, Bjørn Tore Løvfall', author_email='jesper.friis@sintef.no', description=('Python reference API for the Elementary Multiperspective' - 'Material Ontology'), + 'Material Ontology.'), long_description=long_description, long_description_content_type="text/markdown", url='https://github.com/emmo-repo/EMMO-python', license='BSD', - python_requires='>=3.6.0', + python_requires='>=3.6', classifiers=[ - 'Development Status :: 4 - Beta', + 'Development Status :: 2 - Pre-Alpha', 'Intended Audience :: Developers', "Intended Audience :: Information Technology", "Intended Audience :: Science/Research", @@ -80,8 +80,10 @@ def fglob(patt): 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', - "Topic :: Scientific/Engineering :: Physics", - "Topic :: Scientific/Engineering :: Artificial Intelligence", + "Topic :: Scientific/Engineering", + "Topic :: Scientific/Engineering :: Information Analysis", + "Topic :: Scientific/Engineering :: Visualization", + "Topic :: Software Development :: Documentation", "Topic :: Software Development :: Libraries :: Python Modules", ], install_requires=REQUIREMENTS, From 56de0c12b34069504869f9ce97415502a77a2e97 Mon Sep 17 00:00:00 2001 From: Casper Welzel Andersen Date: Mon, 25 Oct 2021 15:34:09 +0200 Subject: [PATCH 2/2] Satisfy flake8 --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c66941052..0052c8c82 100644 --- a/setup.py +++ b/setup.py @@ -61,7 +61,10 @@ def fglob(patt): setuptools.setup( name='EMMOntoPy', version=VERSION, - author='Jesper Friis, Francesca Lønstad Bleken, Casper Welzel Andersen, Bjørn Tore Løvfall', + author=( + 'Jesper Friis, Francesca Lønstad Bleken, Casper Welzel Andersen, ' + 'Bjørn Tore Løvfall' + ), author_email='jesper.friis@sintef.no', description=('Python reference API for the Elementary Multiperspective' 'Material Ontology.'),