-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·44 lines (39 loc) · 1.69 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
39
40
41
42
43
44
#! /usr/bin/env python
# -*- coding: utf8 -*-
import os
import io
from setuptools import setup
def getreadme():
for fname in ('README.rst','README.md', 'README'):
if os.path.exists(fname):
return io.open(os.path.join(os.path.dirname(__file__), fname),'r',encoding='utf-8').read()
return ""
setup(
name = "asrservice",
version = "0.3", #make sure SYSTEM_VERSION in your service configuration is set to the same value!
author = "Maarten van gompel", #adapt this
description = ("An Automatic Speech Recognition Service for a variety of languages, powered by WhisperX"), #adapt this with a better (short) description!
license = "GPL-3.0-or-later",
keywords = "clam webservice rest nlp computational_linguistics rest",
url = "https://github.com/opensource-spraakherkenning-nl/asrservice",
packages=['asrservice'],
long_description=getreadme(),
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Text Processing :: Linguistic",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: POSIX",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
package_data = {'asrservice':['*.wsgi','*.yml','*.sh'] },
include_package_data=True,
install_requires=['CLAM >= 3.2', 'whisperx']
)