-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
26 lines (24 loc) · 880 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
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.0.5',
description='Tools for acquiring and processing Ultrasonic NDT data',
author='Timothy Lardner',
author_email='[email protected]',
url='https://github.com/timlardner',
license = "Not to be used by anyone",
packages=['TLTools'],
install_requires=[
'pycuda','matplotlib','numpy','viscm','scipy','pillow','pythonnet',
],
long_description='This is a test of TFM awesomeness',
package_data={'': ['TFMKernel.cu']},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"License :: Other/Proprietary License",
"Intended Audience :: Developers",
],
)