forked from machinalis/quepy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (37 loc) · 1.51 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="quepy",
version="0.4.1",
description="A framework to convert natural language to database queries.",
long_description=open('README.rst').read(),
author="Rafael Carrascosa, Gonzalo Garcia Berrotaran",
author_email="[email protected]",
url="https://github.com/machinalis/quepy",
keywords=["regular expressions", "regexp", "re", "NLP",
"natural language processing",
"natural language interface to database", "sparql", "database",
"interface", "quepy"],
classifiers=[
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Text Processing :: Linguistic",
"Topic :: Text Processing",
"Topic :: Utilities",
],
packages=["quepy"],
# moved requires for "refo" to ffbo.nlp_component to allow this package to
# install with pip
install_requires=["nltk", "SPARQLWrapper", "docopt", "spacy>=3.2.6,<4"],
scripts=["scripts/quepy"]
)