Skip to content

Commit 00a2a3b

Browse files
committed
chore: bump version 0.0.4 → 0.0.5
1 parent 64e523a commit 00a2a3b

File tree

3 files changed

+31
-17
lines changed

3 files changed

+31
-17
lines changed

stardist/conda-recipe/meta.yaml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
package:
2-
name: 'run-stardist'
3-
version: '0.0.4'
2+
name: "run-stardist"
3+
version: "0.0.5"
44

55
source:
66
path: ..
77

88
build:
99
noarch: python
10-
script: 'pip install . --no-deps --ignore-installed --no-cache-dir'
10+
script: "pip install . --no-deps --ignore-installed --no-cache-dir"
1111
number: 1
1212
entry_points:
1313
- train-stardist = runstardist.train:main
@@ -17,14 +17,18 @@ requirements:
1717
build:
1818
- python
1919
- pip
20+
2021
run:
2122
- python>=3.10 # for `|` in pydantic
22-
# - tensorflow
23+
# - tensorflow # many users have their own installation
2324
- stardist
2425
- wandb
2526
- pydantic
27+
- pyyaml
2628

2729
about:
2830
home: https://github.com/kreshuklab/go-nuclear
31+
doc_url: https://kreshuklab.github.io/go-nuclear/
32+
dev_url: https://github.com/kreshuklab/go-nuclear
2933
license: MIT
3034
license_family: MIT
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.4"
1+
__version__ = "0.0.5"

stardist/setup.py

Lines changed: 22 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,30 @@
1-
from setuptools import setup, find_packages
1+
from pathlib import Path
22

3-
exec(open('runstardist/__version__.py', encoding='utf-8').read()) # pylint: disable=exec-used
3+
from setuptools import find_packages, setup
4+
5+
6+
exec(open("runstardist/__version__.py", encoding="utf-8").read())
47

58
setup(
6-
name='run-stardist',
7-
version=__version__, # pylint: disable=undefined-variable
8-
author='Qin Yu',
9-
author_email='qin.yu@embl.de',
10-
license='MIT',
11-
description='Train and use StarDist models',
12-
url='https://github.com/kreshuklab/go-nuclear',
9+
name="run-stardist",
10+
version=__version__,
11+
author="Qin Yu",
12+
author_email="qin.yu@embl.de",
13+
license="MIT",
14+
description="Train and use StarDist models",
15+
long_description=(Path(__file__).parent / "README.md").read_text(),
16+
long_description_content_type="text/markdown",
17+
url="https://github.com/kreshuklab/go-nuclear",
18+
project_urls={
19+
"Documentation": "https://kreshuklab.github.io/go-nuclear/",
20+
"Source": "https://github.com/kreshuklab/go-nuclear",
21+
"Bug Tracker": "https://github.com/kreshuklab/go-nuclear/issues",
22+
},
1323
packages=find_packages(),
1424
entry_points={
15-
'console_scripts': [
16-
'train-stardist=runstardist.train:main',
17-
'predict-stardist=runstardist.predict:main',
25+
"console_scripts": [
26+
"train-stardist=runstardist.train:main",
27+
"predict-stardist=runstardist.predict:main",
1828
],
1929
},
2030
)

0 commit comments

Comments
 (0)