-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
72 lines (59 loc) · 1.8 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# coding=utf-8
"""
Setup for scikit-surgery-evaluation
"""
from setuptools import setup, find_packages
import versioneer
# Get the long description
with open('README.rst') as f:
long_description = f.read()
setup(
name='scikit-surgery-evaluation',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='A python library for performing surgical skills evaluation',
long_description=long_description,
long_description_content_type='text/x-rst',
url='https://github.com/UCL/scikit-surgery-evaluation',
author='Stephen Thompson',
author_email='YOUR-EMAIL@ucl.ac.uk',
license='BSD-3 license',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
],
keywords='medical imaging',
packages=find_packages(
exclude=[
'doc',
'tests',
'data',
]
),
install_requires=[
'numpy',
'ipykernel',
'nbsphinx',
'vtk',
'PySide2',
'scikit-surgeryvtk>=0.12.3',
'scikit-surgerycore',
'scikit-surgeryutils',
'scikit-surgerynditracker',
'scikit-surgeryarucotracker>=0.0.4'
],
entry_points={
'console_scripts': [
'sksurgeryeval=sksurgeryeval.__main__:main',
],
},
)