-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (27 loc) · 676 Bytes
/
setup.py
File metadata and controls
32 lines (27 loc) · 676 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
25
26
27
28
29
30
31
32
# -*- coding: utf-8 -*-
"""
Created on Mon Apr 03 16:33:51 2017
@author: u0078867
"""
from setuptools import setup, find_packages
setup(
name='PyBiomech',
version='1.0.1',
description='Collection of tools for certain biomechanical pipelines',
long_description=open('README.rst').read(),
packages=find_packages('src'),
package_dir={'':'src'},
install_requires=[
'numpy',
'scipy',
'matplotlib',
'openpyxl',
'vtk',
'btk'
],
include_package_data=True,
license='MIT',
author='u0078867',
author_email='davide.monari@kuleuven.be',
url='https://github.com/u0078867/PyBiomech',
)