-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.15 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
from setuptools import setup
from setuptools import find_packages
VERSION = "0.1.0"
DESCRIPTION = "Meta framework for Deep Learning frameworks with PyTorch"
with open("README.md", encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
setup(
name="carefree-core",
version=VERSION,
packages=find_packages(exclude=("tests",)),
install_requires=[
"rich",
"onnx",
"wandb",
"pillow",
"aiohttp",
"fastapi",
"filelock",
"networkx",
"requests",
"matplotlib",
"onnxruntime",
"safetensors",
"numpy>=1.22.3",
"pydantic>=2.0.0",
"websockets>=12.0",
"accelerate==0.34.2",
"onnx-simplifier>=0.4.1",
],
author="carefree0910",
author_email="[email protected]",
url="https://github.com/carefree0910/carefree-core",
download_url=f"https://github.com/carefree0910/carefree-core/archive/v{VERSION}.tar.gz",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
include_package_data=True,
keywords="python framework deep-learning pytorch",
)