-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
56 lines (51 loc) · 1.87 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python
from setuptools import setup
project = "rdflib-sqlalchemy"
version = "0.5.5.dev0"
setup(
name=project,
version=version,
description="rdflib extension adding SQLAlchemy as an AbstractSQLStore back-end store",
author="Graham Higgins, Adam Ever-Hadani",
author_email="gjhiggins@gmail.com, adamhadani@globality.com",
url="http://github.com/RDFLib/rdflib-sqlalchemy",
packages=["rdflib_sqlalchemy"],
download_url="https://github.com/RDFLib/rdflib-sqlalchemy/zipball/master",
license="BSD",
platforms=["any"],
long_description="""
SQLAlchemy store formula-aware implementation.
It stores its triples in the following partitions:
* Asserted non rdf:type statements
* Asserted rdf:type statements (in a table which models Class membership).
The motivation for this partition is primarily improved query speed and
scalability as most graphs will always have more rdf:type statements than
others.
* All Quoted statements
In addition it persists namespace mappings in a separate table
""",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
"Natural Language :: English",
],
install_requires=[
"alembic>=0.8.8",
"rdflib>=6,<8",
"six>=1.10.0",
"SQLAlchemy>=2.0.23",
],
entry_points={
'rdf.plugins.store': [
'SQLAlchemy = rdflib_sqlalchemy.store:SQLAlchemy'
]
}
)