-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 901 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='needle-shape-sensing',
version='1.1.3',
author='Dimitri Lezcano',
author_email='dlezcan1@jhu.edu',
packages=find_packages(),
url='http://pypi.python.org/pypi/needle-shape-sensing/',
license='LICENSE.txt',
description='Needle Shape Sensing library',
long_description=open( 'README.md' ).read(),
install_requires=[
'numpy',
'scipy',
'spatialmath-python',
'sympy',
'numba',
'tensorflow',
'torch',
'torchvision',
'torchaudio',
'needle-shape-sensing',
],
classifiers=[
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License'
]
)