spikezoo 0.1__tar.gz → 0.1.2__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- spikezoo-0.1.2/MANIFEST.in +1 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/PKG-INFO +1 -1
- spikezoo-0.1.2/requirements.txt +18 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/setup.py +4 -4
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo.egg-info/PKG-INFO +1 -1
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo.egg-info/SOURCES.txt +2 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/LICENSE.txt +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/README.md +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/setup.cfg +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/__init__.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/archs/__init__.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/datasets/__init__.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/datasets/base_dataset.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/datasets/realworld_dataset.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/datasets/reds_small_dataset.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/datasets/szdata_dataset.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/datasets/uhsr_dataset.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/metrics/__init__.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/models/__init__.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/models/base_model.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/models/bsf_model.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/models/spcsnet_model.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/models/spikeclip_model.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/models/spikeformer_model.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/models/spk2imgnet_model.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/models/ssir_model.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/models/ssml_model.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/models/stir_model.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/models/tfi_model.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/models/tfp_model.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/models/wgse_model.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/pipeline/__init__.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/pipeline/base_pipeline.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/pipeline/ensemble_pipeline.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/pipeline/train_pipeline.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/utils/__init__.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/utils/data_utils.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/utils/img_utils.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/utils/other_utils.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo/utils/spike_utils.py +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo.egg-info/dependency_links.txt +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo.egg-info/requires.txt +0 -0
- {spikezoo-0.1 → spikezoo-0.1.2}/spikezoo.egg-info/top_level.txt +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
include requirements.txt
|
@@ -1,16 +1,16 @@
|
|
1
1
|
from setuptools import find_packages
|
2
2
|
from setuptools import setup
|
3
3
|
|
4
|
-
with open("
|
4
|
+
with open("requirements.txt", "r", encoding="utf-8") as fh:
|
5
5
|
install_requires = fh.read()
|
6
6
|
|
7
|
-
with open("
|
7
|
+
with open("README.md", "r", encoding="utf-8") as fh:
|
8
8
|
long_description = fh.read()
|
9
9
|
|
10
10
|
setup(
|
11
11
|
install_requires=install_requires,
|
12
12
|
name="spikezoo",
|
13
|
-
version="0.1",
|
13
|
+
version="0.1.2",
|
14
14
|
author="Kang Chen",
|
15
15
|
author_email="mrchenkang@stu.pku.edu.cn",
|
16
16
|
description="A deep learning toolbox for spike-to-image models.",
|
@@ -19,5 +19,5 @@ setup(
|
|
19
19
|
url="https://github.com/chenkang455/Spike-Zoo",
|
20
20
|
packages=find_packages(),
|
21
21
|
python_requires='>=3.7',
|
22
|
-
include_package_data=False
|
22
|
+
include_package_data=False,
|
23
23
|
)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|