-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 658 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (19 loc) · 658 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup, find_packages
setup(
name = "Alignapy",
version = "0.1",
packages = find_packages(),
namespace_packages=['alignapy'],
include_package_data=True,
install_requires=[
'rdflib>=4.0.1',
'nltk>=2.0',
'requests>=2.0.0',
],
author = "Mikel Emaldi",
author_email = "m.emaldi@deusto.es",
description = "Python port of some features of Alignapi (http://alignapi.gforge.inria.fr/)",
license = "LGPL",
keywords = "rdf ontology matching linked data semantic web",
url = "https://github.com/memaldi/alignapy", # project home page, if any
)