Skip to content

Commit

Permalink
Bump version number to 0.2.4 (prepare initial deployment) (#227)
Browse files Browse the repository at this point in the history
* Bump version number to 1.0.0

* Make version num a constant for easy updating, and add download_uri to setup call so that users can actually download the tools for our repo

* Downgrade version number to 0.2.4, and add more classifier information
  • Loading branch information
alex-l-kong authored Sep 17, 2020
1 parent 74f25a3 commit 7df4cfe
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
from os import path
from setuptools import setup, find_packages

VERSION = '0.2.4'

# set a long description which is basically the README
with open(path.join(path.abspath(path.dirname(__file__)), 'README.md')) as f:
long_description = f.read()

setup(
name='ark',
version='0.2.3',
version=VERSION,
packages=find_packages(),
license='Modified Apache License 2.0',
description='Toolbox for analysis on segmented images from MIBI',
author='Angelo Lab',
url='https://github.com/angelolab/ark-analysis',
download_url='https://github.com/angelolab/ark-analysis/archive/{}.tar.gz'.format(VERSION),
install_requires=['h5py',
'jupyter',
'jupyter_contrib_nbextensions',
Expand All @@ -36,5 +39,8 @@
},
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=['Programming Language :: Python :: 3.6']
classifiers=['License :: OSI Approved :: Apache Software License',
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6']
)

0 comments on commit 7df4cfe

Please sign in to comment.