-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (30 loc) · 858 Bytes
/
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
from setuptools import setup
setup(name="FuXi",
version="1.4.1",
description="An OWL / N3-based in-memory, logic reasoning system for RDF",
author="Chime Ogbuji",
author_email="[email protected]",
package_dir = {
'FuXi': 'lib',
},
packages=[
"FuXi",
"FuXi.LP",
"FuXi.SPARQL",
"FuXi.Rete",
"FuXi.DLP",
"FuXi.Horn",
"FuXi.Syntax",
],
package_data={'FuXi.Horn': ['rif-core-rdf.xsl','uri.xsl']},
install_requires = ['rdflib<3a',],#'telescope'],
license = "Apache",
keywords = "python logic owl rdf dlp n3 rule reasoner",
url = "http://code.google.com/p/python-dlp/wiki/FuXi",
entry_points = {
'console_scripts': [
'FuXi = FuXi.Rete.CommandLine:main',
],
},
zip_safe=False
)