Skip to content

Commit

Permalink
Update settings.ini (#50)
Browse files Browse the repository at this point in the history
* Delete requirements.txt

* Update main.yml

* Update setup.py

* Update settings.ini
  • Loading branch information
kbressem authored Apr 10, 2021
1 parent 1c51fa0 commit 385aa04
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 15 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,16 @@ jobs:
with:
python-version: '3.7'
architecture: 'x64'

- name: Install the library
run: |
pip install nbdev jupyter
- name: Install requirements
- name: Install the library
run: |
pip install setuptools==50.3.2 wheel==0.36.2 && pip install -r requirements.txt
pip install nbdev jupyter
pip install -e .
- name: Read all notebooks
run: |
nbdev_read_nbs
Expand Down
12 changes: 0 additions & 12 deletions requirements.txt

This file was deleted.

6 changes: 5 additions & 1 deletion settings.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ min_python = 3.6
audience = Developers, medical professionals
language = English
custom_sidebar = True
license = MIT
license = mit
nbs_path = nbs
doc_path = docs
doc_host = https://kbressem.github.io
Expand All @@ -24,3 +24,7 @@ git_url = https://github.com/kbressem/faimed3d/tree/master/
lib_path = faimed3d
tst_flags = slow|not_run|cuda
monospace_docstrings = True
requirements = fastai==2.2.5 fastcore==1.3.9 pyuv scikit-image==0.17.2 pydicom==2.1.2 torch==1.7.0 torchvision==0.8.1 kornia==0.4.1 simpleitk==2.0.2 opencv-python==4.5.1.48
pip_requirements = torch==1.7.0
conda_requirements = pytorch==1.7.0
dev_requirements = nbdev==1.1.5
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@

licenses = {
'apache2': ('Apache Software License 2.0','OSI Approved :: Apache Software License'),
'mit': ('MIT License', 'OSI Approved :: MIT License'),
'gpl2': ('GNU General Public License v2', 'OSI Approved :: GNU General Public License v2 (GPLv2)'),
'gpl3': ('GNU General Public License v3', 'OSI Approved :: GNU General Public License v3 (GPLv3)'),
'bsd3': ('BSD License', 'OSI Approved :: BSD License'),
}

statuses = [ '1 - Planning', '2 - Pre-Alpha', '3 - Alpha',
'4 - Beta', '5 - Production/Stable', '6 - Mature', '7 - Inactive' ]
py_versions = '2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 3.0 3.1 3.2 3.3 3.4 3.5 3.6 3.7 3.8'.split()
Expand Down

0 comments on commit 385aa04

Please sign in to comment.