-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·25 lines (23 loc) · 821 Bytes
/
setup.py
File metadata and controls
executable file
·25 lines (23 loc) · 821 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
from setuptools import setup
from setuptools import find_packages
with open("README.md", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="torch_stoi",
version="0.2.2",
description="Computes Short Term Objective Intelligibility in PyTorch",
author="Manuel Pariente",
author_email="pariente.mnl@gmail.com",
url="https://github.com/mpariente/pytorch_stoi",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
install_requires=["numpy", "torch", "pystoi", "torchaudio"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
packages=find_packages(),
)