-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsetup.py
32 lines (27 loc) · 950 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
29
30
31
32
from pathlib import Path
from setuptools import find_packages, setup
here = Path(__file__).parent
with open(here / "requirements.txt") as file:
requirements = file.read().splitlines()
with open(here / "README.md") as file:
readme = file.read()
setup(
name="brouhaha",
version='0.9.0',
packages=find_packages(),
description="Pyannote extension for SNR and C50 predictions",
long_description=readme,
long_description_content_type="text/markdown",
author="Marianne Métais",
url="https://github.com/marianne-m/brouhaha-vad",
install_requires=requirements,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering",
],
)