-
Notifications
You must be signed in to change notification settings - Fork 52
/
setup.py
43 lines (39 loc) · 1.18 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
34
35
36
37
38
39
40
41
42
43
from setuptools import find_packages, setup
NAME = 'torch_stft'
REQUIREMENTS = [
'numpy',
'scipy',
'librosa',
]
with open("README.md", "r") as fh:
long_description = fh.read()
EXTRAS={
'tests': ['pytest']
}
setup(
name="torch_stft",
version="0.1.4",
description="An STFT/iSTFT for PyTorch",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pseeth/torch-stft",
author="Prem Seetharaman",
author_email="prem@u.northwestern.edu",
classifiers=[
"Environment :: Plugins",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
],
# Exclude the build files.
packages=find_packages(),
install_requires=REQUIREMENTS,
extras_requires=EXTRAS,
)