-
Md Rezaul Karim authoredMd Rezaul Karim authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
setup.py 1.07 KiB
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="jupyter-rdfify",
version="1.0.2",
author="Lars Pieschel and Md. Rezaul Karim",
author_email="lars.pieschel@rwth-aachen.de/rezaul.karim@rwth-aachen.de",
description="IPython Extension for semantic web technology support (Turtle, SPARQL, ShEx, etc.)",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/SemWebNotebooks/Jupyter-RDFify",
packages=setuptools.find_packages(),
install_requires=[
"rdflib>=6.0.2",
"ipython>=7.0.0",
"graphviz",
"sparqlwrapper>=1.8.5",
"owlrl",
"sparqlslurper @ git+ssh://github.com/rezacsedu/sparqlslurper.git"
"PyShEx @ git+ssh://github.com/rezacsedu/PyShEx.git"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: IPython",
],
python_requires='>=3.6',
)