Skip to content
Snippets Groups Projects
Select Git revision
  • 62841dd9556daed03a591e0d1003fcfd28de9ebc
  • master default
  • Omar
  • Jack
4 results

setup.py

Blame
  • setup.py 659 B
    # -*- coding: utf-8 -*-
    """
    Created on Thu Dec 15 13:43:43 2016
    
    @author: js22g12
    """
    
    from setuptools import setup #, find_packages
    
    
    def readme():
        with open('README.md') as f:
            return f.read()
    
    
    setup(name='AmpScan',
          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'],
          package_data={},
          include_package_data=True,
          zip_safe=False)