Skip to content

Commit

Permalink
Ready for
Browse files Browse the repository at this point in the history
  • Loading branch information
skim2257 authored Dec 13, 2021
1 parent 47f3122 commit 9e5d03a
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
import setuptools
from setuptools import setup

# with open("README.md", "r") as fh:
# long_description = fh.read()
with open("README.md", "r") as fh:
long_description = fh.read()

setuptools.setup(
name="imgtools", # Replace with your own username
version="alpha-0.1",
author="BHK Lab",
author_email="michal.kazmierski@uhnresearch.ca",
with open("requirements.txt", "r") as fh:
reqs = fh.read()

setup(
name="med-imagetools",
version="beta-0.1",
author="Michal Kazmierski, Sejin Kim, Vishwesh Ramanathan, Benjamin Haibe-Kains",
author_email="benjamin.haibe.kains@utoronto.ca",
description="Transparent and reproducible image processing pipelines in Python.",
# long_description=long_description,
# long_description_content_type="text/markdown",
# url="https://github.com/pypa/sampleproject",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/bhklab/med-imagetools",
install_requires=reqs,
packages=setuptools.find_packages(),
# classifiers=[
# "Programming Language :: Python :: 3",
Expand Down

0 comments on commit 9e5d03a

Please sign in to comment.