forked from DTaoo/VGGish
-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
42 lines (39 loc) · 1.3 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
''''''
import os
import sys
import setuptools
from distutils.command.install import install
setuptools.setup(
name='vggish-keras',
version='0.1.1',
description='VGGish in Keras.',
long_description=open(
os.path.join(os.path.dirname(__file__), 'README.md')
).read().strip(),
long_description_content_type='text/markdown',
author='Bea Steers',
author_email='bea.steers@gmail.com',
url='https://github.com/beasteers/VGGish',
packages=setuptools.find_packages(),
classifiers=[
"License :: OSI Approved :: ISC License (ISCL)",
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
install_requires=[
'numpy',
'tensorflow',
'pumpp@https://github.com/beasteers/pumpp/archive/tf_keras.zip',
'requests',
# to download the weights from google drive
# TODO: manage session cookies with a standard lib
],
license='MIT License',
zip_safe=False,
keywords='vggish audio audioset keras tensorflow')