-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
43 lines (41 loc) · 1.06 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 setup
setup(
name='ml_draftpick_dss',
version='0.1.0',
description='ML Draftpick DSS',
url='https://github.com/R-N/ml_draftpick_dss',
author='Muhammad Rizqi Nur',
author_email='rizqinur2010@gmail.com',
license='MIT License',
packages=setuptools.find_packages(),
install_requires=[
'pandas',
'numpy',
'tensorflow',
'tensorflow-addons',
'paddleocr',
'paddlepaddle',
'thefuzz',
'requests-html',
'torch',
'opencv-python',
'scikit-image',
'albumentations>=1.3.0',
'plotly',
'torchinfo',
'optuna',
'scipy',
'torch-lr-finder',
'catboost',
'coloredlogs',
'tqdm'
],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'License :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
],
)