-
Notifications
You must be signed in to change notification settings - Fork 239
/
setup.py
38 lines (32 loc) · 1.13 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
'''
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="[email protected], [email protected]",
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'
)