forked from ThoumyreStanislas/MEDimage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (36 loc) · 1.45 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
36
37
38
39
40
41
import sys
from setuptools import find_packages, setup
# Check if current python installation is >= 3.8
if sys.version_info < (3, 8, 0):
raise Exception("MEDimage requires python 3.8 or later")
with open("README.md", encoding='utf-8') as f:
long_description = f.read()
with open('requirements.txt') as f:
requirements = f.readlines()
setup(
name="MEDimage",
version="0.2.0",
author="MEDomics consortium",
author_email="medomics.info@gmail.com",
description="Python Open-source package for medical images processing and radiomic features extraction",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/MahdiAll99/MEDimage",
project_urls={
'Documentation': 'https://medimage.readthedocs.io/en/latest/index.html',
'Github': 'https://github.com/MahdiAll99/MEDimage'
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Image Processing',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
keywords='radiomics cancer imaging medical research computational imaging',
python_requires='>=3.8,<3.10',
packages=find_packages(exclude=['docs', 'tests']),
install_requires=requirements
)