-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
34 lines (31 loc) · 861 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
33
34
from setuptools import find_packages, setup
with open("README.md") as f:
readme = f.read()
with open("LICENSE") as f:
license = f.read()
setup(
name="voxseg-pytorch",
version="1.0.0",
author="Rafael Greca",
author_email="rafaelgreca97@hotmail.com",
description="Voxseg VAD implemented in PyTorch",
long_description=readme,
url="https://github.com/rafaelgreca/voxseg-pytorch",
packages=find_packages(),
license=license,
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
],
python_requires=">=3.8",
install_requires=[
"wheel",
"pandas",
"scipy",
"tables",
"python_speech_features",
"torch",
],
)