-
Md Rezaul Karim authoredMd Rezaul Karim authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
setup.py 1.14 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://git.rwth-aachen.de/i5/teaching/jupyter-rdfify",
packages=setuptools.find_packages(),
install_requires=[
"rdflib~=5.0",
"ipython>=7.0.0",
"graphviz",
"sparqlwrapper>=1.8.5",
"sparqlslurper~=0.4",
"owlrl"#,
#"sparqlslurper @ git+https://git.rwth-aachen.de/rezaul.karim/sparqlslurper.git@master",
#"PyShEx @ git+https://git.rwth-aachen.de/rezaul.karim/PyShEx.git@master"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: IPython",
],
python_requires='>=3.6',
)