We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f285aa8 commit 4284b1aCopy full SHA for 4284b1a
3 files changed
.gitignore
@@ -1 +1,2 @@
1
.ipynb_checkpoints/
2
+.data/
environment.yml
@@ -0,0 +1,16 @@
+name: saibr
+channels:
3
+ - conda-forge
4
+ - defaults
5
+dependencies:
6
+ - python=3.7
7
+ - numpy=1.21.6
8
+ - matplotlib=3.3.4
9
+ - scipy=1.7.3
10
+ - ipywidgets=7.5.1
11
+ - scikit-learn=0.23.2
12
+ - scikit-image==0.14.2
13
+ - jupyter=1.0.0
14
+ - pip
15
+ - pip:
16
+ - opencv-python==4.2.0.34
setup.py
@@ -0,0 +1,9 @@
+from setuptools import find_packages, setup
+
+setup(
+ name='saibr',
+ version='1.0',
+ license="CC BY 4.0",
+ author='Tom Bland',
+ packages=find_packages(),
+)
0 commit comments