Skip to content

Commit

Permalink
Make version num a constant for easy updating, and add download_uri t…
Browse files Browse the repository at this point in the history
…o setup call so that users can actually download the tools for our repo
  • Loading branch information
alex-l-kong committed Sep 17, 2020
1 parent bb4a6ea commit 797bb9c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion 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 = '1.0.0'

# 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='1.0.0',
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 Down

0 comments on commit 797bb9c

Please sign in to comment.