4 Star 10 Fork 2

Gitee 极速下载/SpikingJelly

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/fangwei123456/spikingjelly
克隆/下载
setup.py 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
fangwei123456 提交于 2024-03-08 10:55 . test rtd webhook
'''
python setup.py sdist bdist_wheel
python -m twine upload dist/*
'''
from setuptools import find_packages
from setuptools import setup
requirements = ["torch"]
with open("./requirements.txt", "r", encoding="utf-8") as fh:
install_requires = fh.read()
with open("./README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
install_requires=install_requires,
name="spikingjelly",
version="0.0.0.0.15",
author="PKU MLG, PCL, and other contributors",
author_email="fwei@pku.edu.cn, chyq@pku.edu.cn",
description="A deep learning framework for SNNs built on PyTorch.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/fangwei123456/spikingjelly",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
],
python_requires='>=3.6'
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/mirrors/SpikingJelly.git
git@gitee.com:mirrors/SpikingJelly.git
mirrors
SpikingJelly
SpikingJelly
master

搜索帮助