-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathsetup.py
26 lines (23 loc) · 820 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
from setuptools import setup
from setuptools import find_packages
try:
from pypandoc import convert
read_md = lambda f: convert(f, 'rst')
except ImportError:
print("warning: pypandoc module not found, could not convert Markdown to RST")
read_md = lambda f: open(f, 'r').read()
setup(name='Panotti',
version='1.0.0',
description='Multi-Channel Audio Classifier',
long_description=read_md('README.md'),
author='Scott Hawley',
author_email='scott.hawley@belmont.edu',
url='https://github.com/drscotthawley/panotti',
download_url='https://github.com/drscotthawley/panotti/tarball/1.0.0',
license='MIT',
install_requires=['keras', 'librosa', 'h5py'],
extras_require={
'headgames': ['pygame'],
},
packages=find_packages()
)