-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
33 lines (29 loc) · 1.06 KB
/
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
29
30
31
32
33
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
excluded = ["training*"]
setuptools.setup(
name="howl",
version="0.1.2",
author="Anserini Gaggle",
author_email="anserini.gaggle@gmail.com",
description="A wake word detection toolkit",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/castorini/howl",
install_requires=requirements,
packages=setuptools.find_packages(exclude=excluded),
classifiers=[
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Speech"
],
python_requires='>=3.6',
)