Skip to content

Commit e079a06

Browse files
committed
hosuekeeping
1 parent 9943e9c commit e079a06

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ rdflib_sqlalchemy.egg-info
77
*.project
88
*.pydevproject
99
/.eggs/
10+
/dist/

README.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@ RDFLib-SQLAlchemy
44
A SQLAlchemy-backed, formula-aware RDFLib Store. It stores its triples
55
in the following partitions:
66

7-
- Asserted non rdf:type statements
8-
- Asserted rdf:type statements (in a table which models Class membership)
9-
The motivation for this partition is primarily query speed and
10-
scalability as most graphs will always have more rdf:type statements than others
11-
- All Quoted statements
7+
- Asserted non rdf:type statements.
8+
- Asserted rdf:type statements (in a table which models Class membership). The motivation for this partition is primarily query speed and scalability as most graphs will always have more rdf:type statements than others.
9+
- All Quoted statements.
1210

1311
In addition, it persists namespace mappings in a separate table.
1412

@@ -36,7 +34,15 @@ Development
3634
===========
3735
Github repository: https://github.com/RDFLib/rdflib-sqlalchemy
3836

39-
Travis-CI build status: [![Build Status](https://travis-ci.org/RDFLib/rdflib-sqlalchemy.png?branch=master)](https://travis-ci.org/RDFLib/rdflib-sqlalchemy)
37+
![Travis CI](https://travis-ci.org/RDFLib/rdflib-sqlalchemy.png?branch=master)]
38+
![PyPI](https://img.shields.io/pypi/v/rdflib-sqlalchemy.svg)
39+
![PyPI](https://img.shields.io/pypi/status/rdflib-sqlalchemy.svg)
40+
![PyPI](https://img.shields.io/pypi/dm/rdflib-sqlalchemy.svg)
41+
![PyPI](https://img.shields.io/pypi/pyversions/rdflib-sqlalchemy.svg)
42+
![PyPI](https://img.shields.io/pypi/l/rdflib-sqlalchemy.svg)
43+
![PyPI](https://img.shields.io/pypi/wheel/rdflib-sqlalchemy.svg)
44+
![PyPI](https://img.shields.io/pypi/format/rdflib-sqlalchemy.svg)
45+
4046

4147
An illustrative unit test:
4248
==========================

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ def find_version(filename):
9595
In addition it persists namespace mappings in a separate table
9696
""",
9797
classifiers=[
98+
"Development Status :: 4 - Beta",
9899
"Programming Language :: Python",
99100
"Programming Language :: Python :: 2",
100101
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)