-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 1.21 KB
/
Copy pathsetup.py
File metadata and controls
31 lines (29 loc) · 1.21 KB
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
from setuptools import setup, find_packages
with open('README.md') as file:
long_description = file.read()
setup(
name='musicnn_keras',
version='0.1.1',
description='Pronounced as "musician", musicnn is a set of pre-trained deep convolutional neural networks for music audio tagging. Musicnn_keras is a tf.keras implementation of musicnn',
author='Elio Quinton',
url='https://github.com/Quint-e/musicnn_keras',
packages=find_packages(),
include_package_data=True,
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"License :: OSI Approved :: ISC License (ISCL)",
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
'Topic :: Multimedia :: Sound/Audio :: Analysis',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
],
keywords='audio music deep learning tagging tensorflow keras machine listening',
license='ISC',
install_requires=['librosa==0.7.0',
'tensorflow>=2.0,<=2.0.4',
'numpy<1.17,>=1.14.5']
)