Skip to content

Commit 4284b1a

Browse files
committed
added environment.yml and setup.py
1 parent f285aa8 commit 4284b1a

3 files changed

Lines changed: 26 additions & 0 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
.ipynb_checkpoints/
2+
.data/

environment.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: saibr
2+
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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
from setuptools import find_packages, setup
2+
3+
setup(
4+
name='saibr',
5+
version='1.0',
6+
license="CC BY 4.0",
7+
author='Tom Bland',
8+
packages=find_packages(),
9+
)

0 commit comments

Comments
 (0)