-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
37 lines (35 loc) · 1.05 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
import setuptools
def readme():
with open('README.md') as f:
README = f.read()
return README
setuptools.setup(
name="wavencoder",
author="Shangeth Rajaa",
author_email="[email protected]",
version="0.1.3",
license="MIT",
url="https://github.com/shangeth/wavencoder",
description="WavEncoder - PyTorch backed audio encoder",
long_description=readme(),
long_description_content_type="text/markdown",
python_requires='>=3.6',
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
],
include_package_data=True,
packages=setuptools.find_packages(),
install_requires=[
"numpy>=1.19.2",
"torch>=1.6.0",
"torchaudio>=0.6.0",
"tqdm",
"fairseq"
],
)