-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 764 Bytes
/
setup.py
File metadata and controls
36 lines (32 loc) · 764 Bytes
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
from setuptools import setup, find_packages
with open("VERSION", "r", encoding="utf-8") as f:
version = f.read().strip()
setup(
name="vutils",
version=version,
author="Vichayturen",
author_email="vichayturen@gmail.com",
description="vichayturen's utils",
url="https://github.com/RankKCodeTalker/vutils",
license="MIT",
install_requires=[],
extra_requires=[
'numpy'
'pandas',
'openpyxl',
'matplotlib',
'scipy',
'scikit-learn',
'torch',
'tqdm',
'gradio',
'openai',
],
package_dir={"": "src"},
packages=find_packages("src"),
entry_points={
"console_scripts": [
"vvcli=vutils.main:main",
],
},
)