-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (30 loc) · 1.07 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python
# coding: utf-8
"""
Setup package
"""
from os import path
from setuptools import setup, find_packages
# Get the long description from the README file
# HERE = path.abspath(path.dirname(__file__))
with open("README.md", encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
PACKAGE_NAME = 'train_unet'
setup(
name="train_unet",
version="0.0.2",
description="To use U-net architecture and train models for medical imaging at ease.",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url = "https://github.com/iamlmn/train-unet",
author="Lakshmi Naarayanan",
author_email="[email protected]",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
],
packages=['train_unet', 'train_unet.model', 'train_unet.predict'],
python_requires=">=3.6",
install_requires=["numpy","keras==2.2.4","tensorflow==1.13.1","scipy","pandas","scikit-image","docopt","tqdm"],
)