-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
31 lines (26 loc) · 907 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
import os
from setuptools import find_packages, setup
with open("requirements.txt") as f:
requirements = f.read().splitlines()
long_description = open("README.md").read()
dev_requires = ["pre-commit", "black", "flake8"]
setup(
name="dover-lap",
version="1.3.2",
author="Desh Raj",
author_email="[email protected]",
description="Combine overlap-aware diarization output RTTMs",
keywords="diarization dover",
url="https://github.com/desh2608/dover-lap",
license="Apache-2.0 License",
packages=find_packages(),
install_requires=requirements,
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
entry_points={"console_scripts": ["dover-lap=dover_lap.dover_lap:main"]},
)