-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 947 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
import setuptools
with open("README.md", "r") as readme:
long_description = readme.read()
setuptools.setup(
name="svd-downloader",
packages=["svd_downloader"],
version=os.environ["RELEASE_VERSION"],
license="MIT",
description="Simple utility to download Saarbruecken Voice Database",
author="Rijul Gupta",
author_email="[email protected]",
url="https://github.com/rijulg/svd-downloader",
keywords=["Downloader", "SVD", "Disordered Voice Database"],
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"dask>=2024.1.1",
"beautifulsoup4>=4.12.3",
"requests>=2.31.0",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Utilities",
],
)