-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 853 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
32
33
34
35
from setuptools import setup
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name='',
version='0.1',
description='',
long_description=long_description,
long_description_content_type="text/markdown",
author='Vu Quoc Hien',
author_email='hienvq.2000@gmail.com',
url='https://github.com/NeiH4207/KaturaAI',
packages=["src", "data", "models"],
keywords='',
install_requires=[
'matplotlib==3.5.1',
'numpy==1.21.2',
'pandas==1.3.3',
'torch==1.12.0',
'tqdm==4.62.3',
'torchsummary==1.5.1',
'scikit-learn==1.0.2',
'seaborn==0.11.2',
'librosa==0.9.2'
],
python_requires='>=3.8',
entry_points={
'console_scripts': [
]
},
)