-
-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 665 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 665 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
from setuptools import find_packages
with open("README.md") as f:
long_description = f.read()
setup(
name="keras-unet",
version="0.1.2",
description="Helper package with multiple U-Net implementations in Keras as well as useful utility tools helpful when working with image segmentation tasks",
long_description=long_description,
long_description_content_type="text/markdown", # This is important!
url="http://github.com/karolzak/keras-unet",
author="Karol Zak",
author_email="karol.zak@hotmail.com",
license="MIT",
packages=find_packages(),
zip_safe=False,
install_requires=[],
)