-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #83 from OnroerendErfgoed/develop
prepare 1.0.0
- Loading branch information
Showing
15 changed files
with
121 additions
and
174 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 |
---|---|---|
@@ -1,7 +1,6 @@ | ||
language: python | ||
sudo: false | ||
python: | ||
- "2.7" | ||
- "3.6" | ||
- "3.7" | ||
- "3.8" | ||
|
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
cff-version: 1.2.0 | ||
title: Skosprovider_sqlalchemy | ||
message: >- | ||
If you use this software, please cite it using the | ||
metadata from this file. | ||
type: software | ||
authors: | ||
- given-names: Koen | ||
family-names: Van Daele | ||
email: [email protected] | ||
affiliation: Flanders Heritage Agency | ||
orcid: 'https://orcid.org/0000-0002-8153-2978' | ||
abstract: >- | ||
A SQLAlchemy implementation of the Skosprovider interface. It allows | ||
storing and querying a SKOS vocabulary in a SQL database. | ||
keywords: | ||
- SKOS | ||
- thesaurus | ||
- vocabulary | ||
- python | ||
- sqlalchemy | ||
license: MIT | ||
version: 1.0.0 | ||
date-released: "2021-12-12" |
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
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
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 |
---|---|---|
@@ -1,3 +1,2 @@ | ||
SQLAlchemy==1.3.18 | ||
skosprovider==0.7.1 | ||
#-e git+https://github.com/koenedaele/skosprovider.git@DEV_0.7.0#egg=skosprovider | ||
SQLAlchemy==1.4.28 | ||
skosprovider==1.1.0 |
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 |
---|---|---|
|
@@ -13,19 +13,19 @@ | |
] | ||
|
||
requires = [ | ||
'skosprovider>=0.7.0', | ||
'skosprovider>=1.1.0', | ||
'sqlalchemy', | ||
] | ||
|
||
setup( | ||
name='skosprovider_sqlalchemy', | ||
version='0.6.0', | ||
version='1.0.0', | ||
description='A sqlAlchemy implementation of skosprovider.', | ||
long_description=open('README.rst').read(), | ||
long_description_content_type='text/x-rst', | ||
author='Koen Van Daele', | ||
author_email='[email protected]', | ||
url='http://github.com/koenedaele/skosprovider_sqlalchemy', | ||
url='https://github.com/OnroerendErfgoed/skosprovider_sqlalchemy', | ||
packages=packages, | ||
package_data={'': ['LICENSE']}, | ||
package_dir={'skosprovider_sqlalchemy': 'skosprovider_sqlalchemy'}, | ||
|
@@ -39,7 +39,6 @@ | |
'Natural Language :: English', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
|
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
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
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
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
Oops, something went wrong.