-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (18 loc) · 702 Bytes
/
setup.py
File metadata and controls
21 lines (18 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
packages = find_packages(exclude=('pyruct.tests*', 'pyruct.*.tests*'))
setup(
name="pyruct",
version="1.0.3",
description = "Data processing tools for reflection ultrasound computed tomography (RUCT)",
author = "Berkan Lafci",
author_email = "lafciberkan@gmail.com",
url = "https://github.com/berkanlafci/pyruct",
keywords = ["reflection ultrasound computed tomography", "pulse-echo ultrasound", "image reconstruction", "data analysis"],
classifiers = [],
install_requires = ['numpy', 'matplotlib', 'scipy', 'h5py', 'Pillow'],
provides = ["pyruct"],
packages = packages,
include_package_data=True,
extras_require = {},
entry_points = {},
)