-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (27 loc) · 948 Bytes
/
setup.py
File metadata and controls
36 lines (27 loc) · 948 Bytes
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
from setuptools import setup
setup(
# Application name:
name='phonemeRecognizerWrapper',
# Version number (initial):
version='0.1.4',
# Application author details:
author='Petr Krýže',
author_email='petr.kryze@gmail.com',
# Packages
packages=['phonemeRecognizerWrapper'],
# Include additional files into the package
include_package_data=True,
# Details
url='https://github.com/PetrKryze/phonemeRecognizerWrapper',
license='LICENSE.txt',
description='Package containing one wrapper script over the Allosaurus phoneme recognition library, designed for '
'passing the Allosaurus output data to MATLAB scripts for further analysis.',
long_description_content_type="text/markdown",
long_description=open("README.md").read(),
# Dependent packages (distributions)
install_requires=[
"allosaurus",
"pydub",
"setuptools"
],
)