-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
99 lines (90 loc) · 2.61 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import re
try:
import multiprocessing # atexit exception
except:
pass
def setup_python3():
# Taken from "distribute" setup.py
from distutils.filelist import FileList
from distutils import dir_util, file_util, util, log
from os.path import join
tmp_src = join("build", "src")
log.set_verbosity(1)
fl = FileList()
for line in open("MANIFEST.in"):
if not line.strip():
continue
fl.process_template_line(line)
dir_util.create_tree(tmp_src, fl.files)
outfiles_2to3 = []
for f in fl.files:
outf, copied = file_util.copy_file(f, join(tmp_src, f), update=1)
if copied and outf.endswith(".py"):
outfiles_2to3.append(outf)
util.run_2to3(outfiles_2to3)
# arrange setup to use the copy
sys.path.insert(0, tmp_src)
return tmp_src
config = dict(
name="FuXi",
version="1.4",
description="An OWL / N3-based in-memory, logic reasoning system for RDF",
author="Chime Ogbuji",
author_email="[email protected]",
maintainer="RDFLib Team",
maintainer_email="[email protected]",
platforms=["any"],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
"Natural Language :: English",
],
package_dir={
'FuXi': 'lib',
},
packages=[
"FuXi",
"FuXi.LP",
"FuXi.SPARQL",
"FuXi.Rete",
"FuXi.DLP",
"FuXi.Horn",
"FuXi.Syntax",
],
install_requires=['rdflib>2'],
license="Apache",
keywords="python logic owl rdf dlp n3 rule reasoner",
test_suite='nose.collector',
url="https://github.com/RDFLib/FuXi",
entry_points={
'console_scripts': [
'FuXi = FuXi.Rete.CommandLine:main',
],
},
zip_safe=False
)
kwargs = {}
if sys.version_info[0] >= 3:
from setuptools import setup
assert setup
kwargs['use_2to3'] = True
kwargs['src_root'] = setup_python3()
else:
try:
from setuptools import setup
assert setup
except ImportError:
from distutils.core import setup
setup(**config)