-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 1.16 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
from setuptools import setup
from setuptools import find_packages
with open("./requirements.txt", "r", encoding = "utf-8") as f:
install_requires = f.read()
with open("./README.md", "r", encoding = "utf-8") as f:
long_description = f.read()
setup(
name = "dendsn",
version = "0.4.0",
author = "AllenYolk (Huang Yifan, from Peking University)",
author_email = "[email protected]",
description = ("A dendritic computing framework "
"based on PyTorch and spikingjelly."),
long_description = long_description,
long_description_content_type = "text/markdown",
url = "https://github.com/AllenYolk/dendritic-spiking-neuron",
packages = find_packages(),
install_requires = install_requires,
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3 :: Only",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Science/Engineering :: Artificial Intelligence",
"Topic :: Science/Engineering :: Bio-Informatics",
],
python_requires = ">=3.6",
)