forked from timlardner/TLTools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (24 loc) · 894 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
from setuptools import setup, find_packages
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='TLTools',
version='2.1.5',
description='Tools for acquiring and processing Ultrasonic NDT data',
author='Timothy Lardner, Jerzy Dziewierz',
author_email='[email protected]',
url='https://github.com/jerzydziewierz',
license="Not to be used by anyone",
packages=['TLTools'],
install_requires=[
'pycuda', 'matplotlib', 'numpy', 'viscm', 'scipy', 'pillow', 'pythonnet',
],
long_description='cueTFM part of the cueART',
package_data={'': ['TFMKernel.cu']},
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: Other/Proprietary License",
"Intended Audience :: Developers",
],
)