|
a |
|
b/setup.py |
|
|
1 |
from setuptools import setup, find_namespace_packages |
|
|
2 |
|
|
|
3 |
setup(name='ai4elife', |
|
|
4 |
packages=find_namespace_packages(include=["ai4elife", "ai4elife.*"]), |
|
|
5 |
version='1.0.0', |
|
|
6 |
description='ai4elife, Data-centric aI framework for tumor segmentation.', |
|
|
7 |
url="https://github.com/KibromBerihu/ai4elife", |
|
|
8 |
author="LITO laboratory, institute Curie", |
|
|
9 |
author_email='kibrom.girum@curie.fr', |
|
|
10 |
license="MIT", |
|
|
11 |
#install_requires=[], |
|
|
12 |
keywords=['artificial intelligence', 'data-centric ai', 'medical image analysis', |
|
|
13 |
'lfbnet', 'FDG-PET', 'tumor segmentation', 'biomarkers'] |
|
|
14 |
) |