Skip to content

Commit 8e27039

Browse files
authored
Merge pull request #22 from tlambert03/remove-setuptools
remove setuptools
2 parents cbe96a6 + 0c521f7 commit 8e27039

File tree

5 files changed

+4
-53
lines changed

5 files changed

+4
-53
lines changed

.github/workflows/test_and_deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
- name: Install dependencies
6868
run: |
6969
python -m pip install --upgrade pip
70-
pip install -U setuptools setuptools_scm wheel twine
70+
pip install -U setuptools wheel twine
7171
- name: Build and publish
7272
env:
7373
TWINE_USERNAME: __token__

conda.recipe/meta.yaml

Lines changed: 0 additions & 42 deletions
This file was deleted.

pycudadecon/__init__.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
try:
2-
from ._version import version as __version__
3-
except ImportError:
4-
__version__ = "unknown"
1+
__version__ = "0.2.0"
52

63
from ._libwrap import RL_cleanup as rl_cleanup
74
from .affine import affineGPU, deskewGPU, rotateGPU

setup.cfg

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = pycudadecon
3-
version = 0.0.11
3+
version = 0.2.0
44
description = Python wrapper for CUDA-accelerated 3D deconvolution
55
long_description = file: README.md
66
long_description_content_type = text/markdown
@@ -40,8 +40,6 @@ install_requires =
4040
tifffile
4141
typing_extensions
4242
python_requires = >=3.6
43-
setup_requires =
44-
setuptools_scm
4543

4644
[options.entry_points]
4745
napari.plugin =

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
import setuptools
2-
3-
setuptools.setup(use_scm_version={"write_to": "pycudadecon/_version.py"})
1+
__import__("setuptools").setup()

0 commit comments

Comments
 (0)