forked from DerwenAI/kglab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (46 loc) · 1.66 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="kglab",
version="0.1.2",
author="Paco Nathan",
author_email="[email protected]",
description="Python wrapper for knowledge graph abstraction layer",
long_description=long_description,
long_description_content_type="text/markdown",
url="http://github.com/DerwenAI/kglab",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Text Processing :: Indexing",
],
python_requires=">=3.6",
install_requires=[
"rdflib",
"rdflib-jsonld",
"pandas",
"numpy",
"pyarrow",
"networkx",
"python-dateutil",
"pyvis",
"matplotlib",
"pslpython",
"gensim",
"pylev",
],
keywords="knowledge graph, graph algorithms, interactive visualization, inference, rdf, skos, owl, controlled vocabulary, managing namespaces, serialization, n3, turtle, json-ld, parquet, psl, probabilistic soft logic",
license="MIT",
zip_safe=False,
)