-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (42 loc) · 1.47 KB
/
setup.py
File metadata and controls
44 lines (42 loc) · 1.47 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
import os
from setuptools import setup, find_packages
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "sdd2rdf",
version = "1.5.5",
author = "Jamie McCusker",
author_email = "mccusj@cs.rpi.edu",
description = ("sdd2rdf generates RDF graphs from semantically annotated data."),
license = "Apache License 2.0",
keywords = "rdf semantic etl",
url = "http://packages.python.org/sdd2rdf",
packages=['sdd2rdf'],
long_description='''SETLr is a tool for generating RDF graphs, including named graphs, from almost any kind of tabular data.''',
include_package_data = True,
package_data={'sdd2rdf': ['templates/*.jinja']},
install_requires = [
'future',
'rdflib',
'rdflib-jsonld',
'setlr',
# 'bsddb3',
'jinja2',
'openpyxl',
'puremagic',
'python-slugify',
'pandas>=0.23.0',
],
entry_points = {
'console_scripts': ['sdd2rdf=sdd2rdf:main','sdd2setl=sdd2rdf:sdd2setl_main','sddmarkup=sdd2rdf:sddmarkup_main'],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"License :: OSI Approved :: Apache Software License",
],
)