forked from dmpelt/foam_ct_phantom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 731 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#-----------------------------------------------------------------------
#Copyright 2019 Centrum Wiskunde & Informatica, Amsterdam
#
#Author: Daniel M. Pelt
#Contact: [email protected]
#Website: http://dmpelt.github.io/foam_ct_phantom/
#License: MIT
#
#This file is part of foam_ct_phantom, a Python package for generating
#foam-like phantoms for CT.
#-----------------------------------------------------------------------
from skbuild import setup
from setuptools import find_packages
setup(
name='foam_ct_phantom',
packages=find_packages(),
version=open('VERSION').read().strip(),
include_package_data=True,
cmake_languages=['C',],
classifiers=[
"License :: OSI Approved :: MIT License",
],
)