Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reset version to 0.1.0 #271

Merged
merged 2 commits into from
Oct 26, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ontopy/__init__.py
Original file line number Diff line number Diff line change
@@ -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):
Expand Down
17 changes: 11 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,17 +61,20 @@ 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='[email protected]',
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",
Expand All @@ -80,8 +83,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,
Expand Down