-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·45 lines (43 loc) · 1.51 KB
/
setup.py
File metadata and controls
executable file
·45 lines (43 loc) · 1.51 KB
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
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
from setuptools import setup, find_packages
# Nasty hack to make e.g. setup.py register read PKG-INFO as utf-8.. {{{
import sys
reload(sys) # setdefaultencoding is deleted in site.py..
sys.setdefaultencoding('utf-8')
# }}}
import oort
setup(
name = "Oort",
version = oort.__version__,
description = """A toolkit for accessing RDF graphs as plain objects.""",
long_description = """
%s""" % "".join(open("README.txt")),
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
],
keywords = "rdf graph toolkit database orm programming sparql json",
platforms = ["any"],
author = "Niklas Lindström",
author_email = "lindstream@gmail.com",
license = "BSD",
url = "http://oort.to/",
packages = find_packages(exclude=["*.test", "*.test.*", "test.*", "test"]),
namespace_packages = ['oort', 'oort.util'],
include_package_data = True,
zip_safe = False,
test_suite = 'nose.collector',
install_requires = ['rdflib',
'setuptools'],
#extras_require = {
# 'json': ["simplejson"],
# 'sparqlclient': ["SPARQLWrapper"],
#},
)