This repository has been archived by the owner on Apr 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
160 changed files
with
13,467 additions
and
1,015 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 |
---|---|---|
|
@@ -108,6 +108,8 @@ ENV/ | |
|
||
dbshx/local_code/ | ||
local_code/ | ||
shexer/local_code/ | ||
|
||
# data | ||
files/ | ||
logs/ |
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,5 @@ | ||
Flask==1.0.3 | ||
Flask-Cors==3.0.7 | ||
rdflib==4.2.2 | ||
rdflib==4.2.2 | ||
SPARQLWrapper==1.8.4 | ||
rdflib-jsonld==0.4.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 |
---|---|---|
@@ -1,13 +1,22 @@ | ||
from distutils.core import setup | ||
from setuptools import find_packages | ||
|
||
setup( | ||
name = 'shexer', | ||
packages = ['shexer'], # this must be the same as the name above | ||
version = '0.0.1', | ||
packages = find_packages(exclude=["*.local_code.*"]), # this must be the same as the name above | ||
version = '1.0.1', | ||
description = 'Automatic schema extraction for RDF graphs', | ||
author = 'Daniel Fernandez-Alvarez', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/DaniFdezAlvarez/shexerp3', | ||
download_url = 'https://github.com/DaniFdezAlvarez/shexer/tarball/0.0.1', | ||
download_url = 'https://github.com/DaniFdezAlvarez/shexer/tarball/1.0.1', | ||
keywords = ['testing', 'shexer', 'shexerp3', "rdf", "shex", "schema"], | ||
classifiers = [], | ||
install_requires=[ | ||
'Flask', | ||
'Flask-Cors', | ||
'rdflib', | ||
'SPARQLWrapper', | ||
'rdflib-jsonld' | ||
], | ||
) |
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.