forked from ekazakos/auditory-slow-fast
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
20 lines (19 loc) · 747 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import setuptools
setuptools.setup(
name='audio_slowfast',
version='0.0.1',
description='Slow-Fast Auditory Streams For Audio Recognition',
long_description=open('README.md').read().strip(),
long_description_content_type='text/markdown',
author='Evangelos Kazakos',
url=f'https://github.com/beasteers/auditory-slow-fast',
packages=setuptools.find_packages(),
install_requires=[
'torch', 'librosa', 'h5py', 'fvcore', 'simplejson', 'psutil',
],
extras_require={
'test': ['pytest', 'pytest-cov'],
'doc': ['sphinx-rtd-theme'],
},
license='Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.',
keywords='auditory slowfast audio recognition')