Skip to content

Commit

Permalink
Added deply.bat
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Gonzalez Tirado committed Sep 28, 2021
1 parent 64e1539 commit a847f9e
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 141 deletions.
120 changes: 0 additions & 120 deletions .idea/workspace.xml

This file was deleted.

8 changes: 8 additions & 0 deletions deploy.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
python -m pip install --user --upgrade setuptools wheel

python setup.py sdist bdist_wheel

python -m pip install --user --upgrade twine

python -m twine upload --repository pypi dist/*

Empty file.
2 changes: 2 additions & 0 deletions napari_spacetx_explorer/_tests/test_plugin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
def test_something():
pass
20 changes: 7 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@

install_deps = ['napari',
'napari-plugin-engine>=0.1.4',
'imagecodecs']
'numpy',
'pandas']

with open("README.md", "r") as fh:
long_description = fh.read()
Expand All @@ -23,34 +24,27 @@
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
python_requires='>=3.6',
python_requires='>=3.7',
use_scm_version=True,
install_requires=install_deps,
setup_requires=['setuptools_scm', 'pytest-runner'],
tests_require=['pytest', 'pytest-qt'],
extras_require={
"docs": [
'sphinx>=3.0',
'sphinxcontrib-apidoc',
'sphinx_rtd_theme',
'sphinx-prompt',
'sphinx-autodoc-typehints',
]
},
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Framework :: napari',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Framework :: napari',
],
entry_points={
'napari.plugin': [
'napari-spacetx-explorer = napari_spacetx_explorer',
],
},
)
)
8 changes: 0 additions & 8 deletions tests/test_plugin.py

This file was deleted.

0 comments on commit a847f9e

Please sign in to comment.