Skip to content

Commit ebfc3e4

Browse files
committedFeb 17, 2021
updating README
1 parent 3525501 commit ebfc3e4

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed
 

‎README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
[![Coverage Status](https://codecov.io/gh/weso/rdfsync/branch/master/graph/badge.svg)](https://codecov.io/gh/weso/rdfsync)
55
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/6df235099f9b4dd5816551e6c82d432a)](https://www.codacy.com/gh/weso/rdfsync/dashboard?utm_source=github.com&utm_medium=referral&utm_content=weso/rdfsync&utm_campaign=Badge_Grade)
66
[![License](https://img.shields.io/github/license/weso/rdfsync)](https://github.com/weso/rdfsync/blob/master/LICENSE)
7+
[![Version](https://img.shields.io/badge/version-0.1.0-blue)](https://github.com/weso/rdfsync)
78

89

910
An algorithm to synchronise data between the ontology files and a given Wikibase instance.
@@ -17,7 +18,7 @@ from rdfsync.githubcon.github_connection import update_github_repo
1718
import ntpath
1819

1920
# graph ops
20-
file_path = FILE_PATH # your rdf file path
21+
file_path = FILE_PATH # your rdf file path, even if it's empty
2122

2223
# algorithm execution
2324
converter = Converter(endpoint=MEDIAWIKI_API_URL, input_format='ttl') # http://XXX/w/api.php

‎requirements.txt

-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@ requests==2.23.0
33
PyGithub==1.53
44
pytest~=6.1.0
55
python-dateutil~=2.8.1
6-
secret~=0.8
76
setuptools~=47.1.0

‎setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name='rdfsync',
10-
version='0.0.1',
10+
version='0.1.0',
1111
packages=['rdfsync', 'rdfsync.util', 'rdfsync.githubcon', 'rdfsync.wb2rdf'],
1212
url='https://github.com/weso/rdfsync',
1313
license='MIT',
@@ -16,7 +16,8 @@
1616
long_description=long_description,
1717
long_description_content_type='text/markdown',
1818
install_requires=[
19-
'requests==2.23.0', 'rdflib==5.0.0', 'PyGithub==1.53'
19+
'requests==2.23.0', 'rdflib==5.0.0', 'PyGithub==1.53',
20+
'pytest~=6.1.0', 'python-dateutil~=2.8.1'
2021
],
2122
classifiers=[
2223
'Intended Audience :: Developers',

0 commit comments

Comments
 (0)