Skip to content

Commit 731650f

Browse files
committed
setup
1 parent 3c55553 commit 731650f

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

setup.py

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name = "bayesmedaug",
5+
packages=find_packages(),
6+
version = "0.1.1",
7+
license = "MIT",
8+
description = "Bayesian Optimization Library for Medical Image Segmentation.",
9+
author = "M. Şafak Bilici, Enes Sadi Uysal, Onur Boyar, Alara Hergün",
10+
11+
url = "https://github.com/safakkbilici/bayesmedaug",
12+
download_url = TODO,
13+
keywords = [
14+
"Medical Image Segmentation",
15+
"Bayesian Optimization",
16+
"Data Augmentation"
17+
],
18+
install_requires=[
19+
"bayesian-optimization",
20+
"torch>=1.6",
21+
"torchvision",
22+
"tqdm",
23+
"imgaug",
24+
"opencv-python"
25+
],
26+
classifiers=[
27+
'Development Status :: 4 - Beta',
28+
'Intended Audience :: Developers',
29+
'Topic :: Scientific/Engineering :: Artificial Intelligence',
30+
'License :: OSI Approved :: MIT License',
31+
'Programming Language :: Python :: 3.7',
32+
],
33+
)

0 commit comments

Comments
 (0)