forked from IMSY-DKFZ/simpa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·28 lines (23 loc) · 976 Bytes
/
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
"""
SPDX-FileCopyrightText: 2021 Computer Assisted Medical Interventions Group, DKFZ
SPDX-FileCopyrightText: 2021 VISION Lab, Cancer Research UK Cambridge Institute (CRUK CI)
SPDX-License-Identifier: MIT
"""
import setuptools
with open('VERSION', 'r') as readme_file:
version = readme_file.read()
with open('README.md', 'r') as readme_file:
long_description = readme_file.read()
with open('requirements.txt', 'r') as requirements_file:
requirements = requirements_file.read().splitlines()
setuptools.setup(
name="simpa",
version=version,
url="https://github.com/CAMI-DKFZ/simpa",
author="Computer Assisted Medical Interventions (CAMI), DKFZ \n"
"Cancer Research UK, Cambridge Institute (CRUK CI)",
description="Simulation and Image Processing for Photoacoustic Imaging",
long_description=long_description,
packages=setuptools.find_packages(exclude=["simpa_tests", "simpa_examples",]),
install_requires=requirements
)