-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 739 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 739 Bytes
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
#!/usr/bin/env python
# encoding: utf-8
from __future__ import with_statement
from setuptools import setup
with open("README.md") as f:
long_description = f.read()
setup(
name="audio-plot-lib",
version="0.1.2",
description="Plot tools based on audio",
long_description=long_description,
long_description_content_type="text/markdown",
author="hassaku",
author_email="hassaku.apps@gmail.com",
url="https://github.com/hassaku/audio-plot-lib",
packages=["audio_plot_lib"],
include_package_data=True,
install_requires=["pydub", "numpy", "gTTS", "bokeh", "ipython"],
tests_require=[],
license="MIT",
keywords="audio plot visually-impaired",
zip_safe=False,
classifiers=[]
)