-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 1.36 KB
/
Copy pathsetup.py
File metadata and controls
35 lines (31 loc) · 1.36 KB
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="mbcs") as readme_file:
readme = readme_file.read()
setup(
name='notq',
version='1.0.0',
description='Notq is a Python base tool collected and developed for speech and language processing in Persian',
long_description=readme,
author='Nbic',
long_description_content_type="text/markdown",
packages=find_packages(include=["notq*"]),
url="https://github.com/shaqayeql/Notq",
install_requires=['torchaudio ==0.9.0',
'pydub ==0.25.1',
'speechRecognition ==3.8.1',
'numpy ==1.19.2',
'tqdm ==4.61.2',
'transformers ==4.11.2',
'torch ==1.9.0',
'wget ==3.2',
'persian_fluency_detector',
'persian_syllable_counter'],
dependency_links=['https://github.com/salsina/persian-fluency-detector#egg=persian_fluency_detector',
'https://github.com/salsina/Persian-syllable-counter#egg=persian_syllable_counter'],
keywords=['python', 'first package'],
classifiers= [
"Intended Audience :: Education",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
]
)