Skip to content

Commit

Permalink
Merge pull request #22 from tlambert03/remove-setuptools
Browse files Browse the repository at this point in the history
remove setuptools
  • Loading branch information
tlambert03 committed May 30, 2021
2 parents cbe96a6 + 0c521f7 commit 8e27039
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 53 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U setuptools setuptools_scm wheel twine
pip install -U setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
Expand Down
42 changes: 0 additions & 42 deletions conda.recipe/meta.yaml

This file was deleted.

5 changes: 1 addition & 4 deletions pycudadecon/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
try:
from ._version import version as __version__
except ImportError:
__version__ = "unknown"
__version__ = "0.2.0"

from ._libwrap import RL_cleanup as rl_cleanup
from .affine import affineGPU, deskewGPU, rotateGPU
Expand Down
4 changes: 1 addition & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = pycudadecon
version = 0.0.11
version = 0.2.0
description = Python wrapper for CUDA-accelerated 3D deconvolution
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down Expand Up @@ -40,8 +40,6 @@ install_requires =
tifffile
typing_extensions
python_requires = >=3.6
setup_requires =
setuptools_scm

[options.entry_points]
napari.plugin =
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
import setuptools

setuptools.setup(use_scm_version={"write_to": "pycudadecon/_version.py"})
__import__("setuptools").setup()

0 comments on commit 8e27039

Please sign in to comment.