Skip to content
Snippets Groups Projects
Commit 71f09db4 authored by Joshua Steer's avatar Joshua Steer
Browse files

Updated the pip install methods

parent 8a34d936
No related branches found
No related tags found
No related merge requests found
......@@ -5,3 +5,6 @@ Created on Thu Dec 15 13:50:41 2016
@author: js22g12
"""
from .core import AmpObject
from .registration import *
from .ampVis import vtkRenWin, qtVtkWindow
\ No newline at end of file
......@@ -5,14 +5,13 @@ Created on Tue Oct 10 16:21:12 2017
@author: js22g12
"""
import AmpScan
import sys
import copy
import numpy as np
from scipy.special import binom
from scipy.interpolate import interp1d
from AmpScan.core import AmpObject
from AmpScan.ampVis import qtVtkWindow
from AmpScan import AmpObject
from AmpScan import qtVtkWindow
from PyQt5.QtWidgets import (QAction, QApplication, QGridLayout,
QMainWindow, QFileDialog, QWidget, QSlider,
QGroupBox, QVBoxLayout, QHBoxLayout, QLabel)
......
......@@ -5,7 +5,7 @@ Created on Thu Dec 15 13:43:43 2016
@author: js22g12
"""
from setuptools import setup
from setuptools import setup, find_packages
def readme():
......@@ -14,15 +14,15 @@ def readme():
setup(name='AmpScan',
version='2017.11',
version='0.1',
description=('Package for analysis of '
'surface scan data of residual limbs'),
long_description=readme(),
author='Joshua Steer',
author_email='Joshua.Steer@soton.ac.uk',
license='MIT',
packages=['AmpScan',],
install_requires=['numpy', 'pandas', 'matplotlib', 'scipy', 'sphinxcontrib-napoleon', 'vtk'],
package_data={'example_stl':' 01_PhantomShell_ICEM_3mm.stl'},
packages=['AmpScan'],
install_requires=['numpy', 'pandas', 'matplotlib', 'scipy', 'sphinxcontrib-napoleon'],
package_data={},
include_package_data=True,
zip_safe=False)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment