Skip to content

Commit

Permalink
fixed pypi CI
Browse files Browse the repository at this point in the history
  • Loading branch information
RaphaelMaser committed Jun 13, 2024
1 parent 43f0b6c commit 0349d9a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ output/

DBSegment/.DS_Store
Dockerfile copy
DBSegment.egg-info
dist/

9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,17 @@ This changelog follows the Semantic Versioning convention (version 2.0.0)

# Changelog

## 31.05.24
## [0.2.2] - 13.06.24
### Changed
- PyPI CI now working

## [0.2.1] - 31.05.24
### Changed
- Modified dockerfile to achieve smaller image size
- Updated README.md to newest docker repo

## 23.05.24

## [0.2.0] - 23.05.24

### Added
- Dockerfile
Expand Down
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,21 @@
import codecs
import os

VERSION = '0.2.0'
VERSION = '0.2.2'
DESCRIPTION = 'A deep learning based method to segment deep brain structures from T1w MRI'

with open('README.md') as f:
readme = f.read()

# Setting up
setup(
name="DBSegment",
version=VERSION,
author="Mehri",
author_email="[email protected]",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=readme,
packages=find_packages(),
readme="README.md",
install_requires=[
Expand Down

0 comments on commit 0349d9a

Please sign in to comment.