-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
24 lines (23 loc) · 932 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
from setuptools import setup, find_packages
setup(
name="ikan", # 包名称,用作 pip install 的名字
version="0.2.0", # 包版本
author="Guoying LIAO", # 作者姓名
author_email="lgy112112@gmail.com", # 作者邮箱
description="An efficient KAN implementation in Chinese.", # 简要描述
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown", # README 文件格式
url="https://github.com/lgy112112/Efficient-KAN-in-Chinese", # 仓库地址
packages=find_packages(include=["kan_family", "kan_family.*"]), # 自动发现所有子包
install_requires=[
"torch>=1.9.0",
"torchinfo",
"numpy",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)