Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Anthony Larcher
sidekit
Commits
d1f90b71
Commit
d1f90b71
authored
Dec 06, 2018
by
Anthony Larcher
Browse files
new tag
parent
7f23ebee
Pipeline
#520
failed with stages
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
__init__.py
View file @
d1f90b71
...
...
@@ -160,7 +160,7 @@ __maintainer__ = "Anthony Larcher"
__email__
=
"anthony.larcher@univ-lemans.fr"
__status__
=
"Production"
__docformat__
=
'reStructuredText'
__version__
=
"1.
3.0
"
__version__
=
"1.
2.7
"
# __all__ = ["io",
# "vad",
...
...
setup.py
deleted
100644 → 0
View file @
7f23ebee
from
distutils.core
import
setup
# patch distutils if it can't cope with the "classifiers" or
# "download_url" keywords
from
sys
import
version
if
version
<
'2.2.3'
:
from
distutils.dist
import
DistributionMetadata
DistributionMetadata
.
classifiers
=
None
DistributionMetadata
.
download_url
=
None
setup
(
name
=
'SIDEKIT'
,
version
=
'1.2.6'
,
author
=
'Anthony Larcher'
,
author_email
=
'anthony.larcher@univ-lemans.fr'
,
packages
=
[
'sidekit'
,
'sidekit.bosaris'
,
'sidekit.frontend'
,
'sidekit.libsvm'
,
'sidekit.nnet'
],
url
=
'http://www-lium.univ-lemans.fr/sidekit/'
,
download_url
=
'http://pypi.python.org/pypi/Sidekit/'
,
license
=
'LGPL'
,
platforms
=
[
'Linux, Windows'
,
'MacOS'
],
description
=
'Speaker, Language Recognition and Diarization package.'
,
long_description
=
open
(
'README.txt'
).
read
(),
install_requires
=
[
"mock>=1.0.1"
,
"nose>=1.3.4"
,
"numpy>=1.11"
,
"pyparsing >= 2.0.2"
,
"python-dateutil >= 2.2"
,
"scipy>=0.12.1"
,
"six>=1.8.0"
,
"matplotlib>=1.3.1"
,
"pytorch >= 0.4"
,
"PyYAML>=3.11"
,
"h5py>=2.5.0"
,
"pandas>=0.16.2"
],
package_data
=
{
'sidekit'
:
[
'docs/*'
]},
classifiers
=
[
'Development Status :: 4 - Beta'
,
'Environment :: Console'
,
'Environment :: MacOS X'
,
'Environment :: Win32 (MS Windows)'
,
'Environment :: X11 Applications'
,
'Intended Audience :: Education'
,
'Intended Audience :: Legal Industry'
,
'Intended Audience :: Science/Research'
,
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)'
,
'Natural Language :: English'
,
'Operating System :: MacOS'
,
'Operating System :: Microsoft'
,
'Operating System :: Other OS'
,
'Operating System :: POSIX'
,
'Programming Language :: Python :: 3.6'
,
'Topic :: Multimedia :: Sound/Audio :: Speech'
,
'Topic :: Scientific/Engineering :: Artificial Intelligence'
]
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment