forked from InsightSoftwareConsortium/ITKPythonPackage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py.in
More file actions
56 lines (51 loc) · 1.77 KB
/
Copy pathsetup.py.in
File metadata and controls
56 lines (51 loc) · 1.77 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Generated using: @SETUP_GENERATOR@
from __future__ import print_function
from os import sys, path
try:
from skbuild import setup
except ImportError:
print('scikit-build is required to build from source.', file=sys.stderr)
print('Please run:', file=sys.stderr)
print('', file=sys.stderr)
print(' python -m pip install scikit-build')
sys.exit(1)
@SETUP_PRE_CODE@
setup(
name='@SETUP_NAME@',
version=@SETUP_VERSION@,
author='Insight Software Consortium',
author_email='community@itk.org',
packages=['itk'],
package_dir={'itk': 'itk'},
cmake_args=[@SETUP_CMAKE_ARGS@],
py_modules=[@SETUP_PY_MODULES@],
download_url=r'@SETUP_DOWNLOAD_URL@',
description=r'@SETUP_DESCRIPTION@',
long_description='@SETUP_LONG_DESCRIPTION@',
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: C++",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries",
"Operating System :: Android",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS"
],
license='Apache',
keywords='ITK InsightToolkit @SETUP_EXTRA_KEYWORDS@',
url=r'https://itk.org/',
install_requires=[
@SETUP_INSTALL_REQUIRES@
]
)
@SETUP_POST_CODE@