-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
28 lines (27 loc) · 890 Bytes
/
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
import setuptools
setuptools.setup(
name='birdvoxpaint',
version='0.2.2',
description='Bird Vox False-Color Spectrograms',
long_description=open('README.md').read().strip(),
long_description_content_type="text/markdown",
author='Phincho Sherpa, Vincent Lostanlen, Bea Steers',
author_email='vincent.lostanlen@cnrs.fr',
# url='http://path-to-my-packagename',
packages=setuptools.find_packages(),
# py_modules=['packagename'],
# package_data={'asdf': {'*.yaml'}},
# include_package_data=True,
install_requires=['librosa>=0.7.1', 'matplotlib', 'tqdm'],
entry_points={
# 'console_scripts': [
# 'bvpaint = bvpaint.cli:main'
# ],
},
license='MIT License',
zip_safe=True,
keywords=(
'acoustic detection bird calls fault identification '
'false color spectrogram librosa'
),
)