-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·37 lines (32 loc) · 1.22 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
#! /usr/bin/env python3
# -*- coding: utf8 -*-
from __future__ import print_function
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname), 'r', encoding='utf-8').read()
setup(
name = "fy_nl_ASR",
version = "0.2",
author = "Emre Yılmaz",
author_email = "emre@nus.edu.sg",
description = ("Frisian Dutch Automatic Speech Recognition Webservice"),
license = "AGPL3",
keywords = "clam webservice rest nlp computational_linguistics rest",
url = "https://github.com/opensource-spraakherkenning-nl/fy-nl_ASR",
packages=['fy_nl_ASR'],
long_description=read('README.md'),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Text Processing :: Linguistic",
"Programming Language :: Python :: 3"
"Operating System :: POSIX",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
package_data = {'fy_nl_ASR':['*.sh','*.wsgi','*.yml'] },
include_package_data=True,
install_requires=['CLAM >= 3.0']
)