Skip to content

Commit

Permalink
Start preparation of setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
white-gecko committed Dec 14, 2018
1 parent 3100641 commit 32aa9fe
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
"""
Quit Store
----------------
Quads in Git - Distributed Version Control for RDF Knowledge Bases
The Quit Store (stands for Quads in Git) provides a workspace for distributed
collaborative Linked Data knowledge engineering. You are able to read and write
RDF datasets (aka. multiple Named Graphs) through a standard SPARQL 1.1 Query
and Update interface. To collaborate you can create multiple branches of the
dataset and share your repository with your collaborators as you know it from
Git.
"""
from setuptools import setup
import os

with open('requirements.txt') as f:
required = f.read().splitlines()

setup(
name='QuitStore',
version='0.17.0',
url='https://github.com/AKSW/QuitStore',
license='GPLv3+',
author='Natanael Arndt, Norman Radtke',
author_email='arndtn@gmail.com',
description='Distributed Version Control for RDF Knowledge Bases',
long_description=__doc__,
packages=['quit'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'rdflib'
],
dependency_links=[

],
classifiers=[
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Database',
'Topic :: Database :: Database Engines/Servers',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Version Control :: Git',
'Topic :: System :: Archiving',
'Topic :: System :: Distributed Computing'
]
)

0 comments on commit 32aa9fe

Please sign in to comment.