-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (35 loc) · 808 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
36
from setuptools import setup
setup(
name="jhutil",
version="0.1.9",
description="jhutil",
long_description_content_type="text/markdown",
url="https://github.com/jk4011/jhutil",
author="Jinhyeok Kim",
author_email="jinhyuk@unist.ac.kr",
install_requires=[
"requests",
"numpy",
"openai",
"colorama",
"lovely-tensors",
"easydict",
"notion_client",
"slack_sdk",
"pillow",
"trimesh",
"plotly",
"PyYAML",
"pytorch_memlab",
"coloredlogs",
"pythreejs",
"einops",
"pyntcloud",
"Pillow==9.5.0",
],
packages=["jhutil"],
python_requires=">=3.6, <4",
project_urls={
"Source": "https://github.com/jk4011/jhutil",
},
)